vimrc-to-json icon indicating copy to clipboard operation
vimrc-to-json copied to clipboard

A Python script that converts a .vimrc file to a settings.json for VSCodeVim.

Results 2 vimrc-to-json issues
Sort by recently updated
recently updated
newest added

*Stracktrace* ``` bash atav32@home:~/code/vimrc-to-json> python3 vimrc-to-json.py Traceback (most recent call last): File "vimrc-to-json.py", line 78, in new_file += mapToJSONList(item["after"], command) File "vimrc-to-json.py", line 45, in mapToJSONList map_json += '"' +...

for example, for my .vimrc: ``` inoremap \ pumvisible() ? "\" : \ check_back_space() ? "\" : \ coc#refresh() ``` should not be converted to: ``` "vim.insertModeKeyBindingsNonRecursive": [ { "before":...