Grueslayer

Results 13 issues of Grueslayer

Because the filename strip is done with the slash "/" as separator, it does not work under windows using backslash "\\". Possible solution for pymatcher.py ~~~python def filename_score(line): # get...

The plugin found at https://github.com/gikmx/vim-ctrlposession lists all sessions. The content of the entries are names of directories. If you've read a file (current buffer is a file) the last entry...

The plugin found at https://github.com/gikmx/vim-ctrlposession misses the last session. The plugin only lists files contained in a specific directory and returns that by ctrlp#obsession#init() ~~~vim function! ctrlp#obsession#init() let flist =...

This plugin does not run on MacVim. After all node dependecies are available, the browser will be opened but does not display any content. Steps to reproduce the behavior: -...

help wanted

Hi there, thanx for this plugin. You are using substitute for the replacement of the placeholder, e..g. ```vim let l:Execute_command = l:actions[l:action]['execute'] if type(l:Execute_command) == v:t_string let l:Execute_command = substitute(l:Execute_command,...

Under Windows the created PNG files are corrupted because the generated content is written to a stream opened with "w". Files opened this way are treated as TEXT streams. For...

Did you thought about using "Crossterm" for accessing the terminal and removing the "sys/*" dependecies. So we can run that on Windows and have the nice Splits easily running. Many...

Hi Eric, "CSV Buffer" is really a bad implementation in BC. You just "removed" the double quotes from the text value (that's also implemented by MS with a third parameter)....

We can use `pythonx` to support support python 2 and 3, so it'll run on my Python 3 only system :) ```diff diff --git a/plugin/nuuid.vim b/plugin/nuuid.vim index a5ed298..7f137b9 100644 ---...

gives multiple errors, starting with creating the empty error file. see vim/vim#8600 workaround could be to use `:p:8` only on the existing directory and appending the new filename later (which...