1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-25 03:02:21 +08:00

Compare commits

..

No commits in common. "14f2de79118738fa160d3c3fbcc93bf892727782" and "2d6abfdb7b91e3d5a998d19414a9909a30d68469" have entirely different histories.

2 changed files with 0 additions and 16 deletions

View File

@ -1540,7 +1540,6 @@ let g:_spacevim_altmoveignoreft = ['Tagbar' , 'vimfiler']
let g:_spacevim_mappings_space = {}
let g:_spacevim_mappings_prefixs = {}
let g:_spacevim_mappings_windows = {}
let g:_spacevim_statusline_fileformat = ''
let g:spacevim_enable_javacomplete2_py = 0
""
" @section src_root, options-src_root

View File

@ -71,21 +71,6 @@ local function show_changes(opts)
actions.close(prompt_bufnr)
vim.cmd('e ' .. entry.value.file_name)
end)
actions.select_tab:replace(function()
local entry = action_state.get_selected_entry()
actions.close(prompt_bufnr)
vim.cmd('tabedit ' .. entry.value.file_name)
end)
actions.select_vertical:replace(function()
local entry = action_state.get_selected_entry()
actions.close(prompt_bufnr)
vim.cmd('vsplit ' .. entry.value.file_name)
end)
actions.select_horizontal:replace(function()
local entry = action_state.get_selected_entry()
actions.close(prompt_bufnr)
vim.cmd('split ' .. entry.value.file_name)
end)
return true
end,
})