Matthew Bright
Matthew Bright
There is a potential solution described on stack overflow: http://stackoverflow.com/questions/15020143/vim-script-check-if-the-cursor-is-on-the-current-word let cInd = strridx(getline('.'), expand(""), col('.') - 1) let isOnKeyword = (cInd >= 0 && (cInd + strlen(expand(""))) >= (col('.')...
I believe the "option to not override search highlight" already exists; as this can be achieved by setting matchmaker_matchpriority to a negative value. According to :help matchadd, the hlsearch has...
tshort has done something similar with his dactyl-manuform fork of the dactyl-keyboard. Perhaps he may be able to provide some advice. See https://github.com/tshort/dactyl-keyboard
I have also been having problems with the `BufDelete` auto-command. Do you still have the issue if you change it to `BufUnload` instead?
I have tried the following, but I cannot get it to work: ``` let s:SL = airline#themes#get_highlight('StatusLine') let g:airline#themes#gruvbox#palette.normal.airline_term = s:SL let g:airline#themes#gruvbox#palette.insert.airline_term = s:SL let g:airline#themes#gruvbox#palette.visual.airline_term = s:SL let...
@xaizek, I have been playing with your solution, but I can quite get it to work. The problem i am having is that `[ -z "$READLINE_LINE" ]` is always evaluating...
@xaizek, thank you for the advice. I have tried `cat`, `script`, and `tee` with all sorts of piping, but have not got the desired effect. For now I am giving...
@jakkubu Actually I have played around with this idea in the past; effectively we want to "hide" the ansi escape codes rather than delete them. Unfortunately I wasn't able to...
@heyblinken Thank you for all the info and debug, it it greatly appreciated. Unfortunately I have been unable to reproduce this issue; would it be possible to provide some steps...
It appears that the view validation that was introduced in commits b5ceb21 and 143a6f8 may be a little too aggressive. It turns out that `view.window` will be set to `None`...