mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] Fix faulty if statement
This commit is contained in:
parent
c23ce14d05
commit
3730b40d25
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ else
|
|||
endif
|
||||
|
||||
" Arrow key fix kanged from <https://vim.fandom.com/wiki/Fix_arrow_keys_that_display_A_B_C_D_on_remote_shell#Solution_21> {{{
|
||||
if g:HELP_MY_ARROW_KEYS_ARE_BROKEN
|
||||
if exists("g:HELP_MY_ARROW_KEYS_ARE_BROKEN")
|
||||
" the following simply creates an ambiguous mapping so vim fully
|
||||
" processes the escape sequence for terminal keys, see 'ttimeout' for a
|
||||
" rough explanation, this just forces it to work
|
||||
|
|
Loading…
Reference in a new issue