Cam Spiers
Cam Spiers
You can create arbitrary next steps with the step API, so yeah I think so. I will try to provide more guidance soon.
This came up here, there isn't a way currently, but there will be soon: https://github.com/camspiers/snap/issues/6#issuecomment-865280353
They don't have a file type set, but if that would help I could set one (except for previews). The results and the input buffers are both of buftype prompt.
With respect to a cursor, I think it's probably a good idea, I'll put it on my todo list.
I've been able to get the compiled jsx in a built version with r,js using PR https://github.com/seiffert/require-jsx/pull/5 and a build config that has the following: (note this isn't the full...
My `amd.config.js` looks like this: ``` require.config({ baseUrl: 'source/js', paths: { JSXTransformer: '../bower_components/react/JSXTransformer', jsx: '../bower_components/require-jsx/jsx', react: '../bower_components/react/react', almond: '../bower_components/almond/almond' } }); ``` My `amd.build.js` looks like this: ``` ({ baseUrl:...
@tex I provided a comment on this reddit post where I explain how you can achieve this now: https://www.reddit.com/r/neovim/comments/1d77kok/comment/l6zd5l7/ ```lua local snap = require("snap") local tbl = require("snap.common.tbl") -- Here...