Ctrl + S (podział poziomy) nie działa z Command-T w vim

Nie mogę uruchomić podziału poziomego. Ctrl + enter nic nie robi, Ctrl + S nic nie robi.

Trochę googlełem, a jedyne rozwiązania, jakie do tej pory znalazłem, są związane z OSX.

Na obu Arch Linux i Ubuntu, mając ten sam problem (ale także tę samą konfigurację).

Nie używam Janusa ani niczego podobnego, tylko bardzo podstawową konfigurację

set t_Co=256
set tabstop=2
set expandtab
set shiftwidth=2
set fileencoding=utf-8
set encoding=utf-8
set termencoding=utf-8
set showcmd
filetype plugin indent on
"color molokai
syntax enable
autocmd! BufNewFile * silent! 0r ~/.vim/skel/tmpl.%:e
set laststatus=2 " Always show the statusline

set backspace=indent,eol,start  " backspace through everything in insert mode

"" Searching
set hlsearch                    " highlight matches
set incsearch                   " incremental searching
set ignorecase                  " searches are case insensitive...
set smartcase                   " ... unless they contain at least one capital letter

call pathogen#infect()
colorscheme jellybeans
" use comma as <Leader> key instead of backslash
let mapleader=","

" Double <Leader> to switch between buffers
nnoremap <leader><leader> <c-^>
" double percentage sign in command mode is expanded
" to directory of current file - http://vimcasts.org/e/14
cnoremap %% <C-R>=expand('%:h').'/'<cr>

map <leader>f :CommandTFlush<cr>\|:CommandT<cr>
map <leader>F :CommandTFlush<cr>\|:CommandT %%<cr>

[~]$ ls .vim/bundle<br>rbenv:system command-t jellybeans.vim snipmate-snippets tlib_vim vim-addon-mw-utils vim-powerline vim-snipmate

Miałem nadzieję, że ktoś będzie w stanie rzucić na to trochę światła, robi się to naprawdę frustrujące.

Nie do końca pewni, co jest nie tak, ale od czasu do czasu działa, ale wcale nie teraz.

Naciśnięcie CTRL + S nic nie robi, shift + enter otwiera je normalnie w bieżącym buforze, a ctrl + enter po prostu przeskakuje listę wyników wyszukiwania w Command-T.

questionAnswers(1)

yourAnswerToTheQuestion