Yaroslav Mazuryk

Results 11 comments of Yaroslav Mazuryk

Hi, i tried to install new version with `packer` but having issues: ```lua use { 'wincent/command-t', run = 'cd lua/wincent/commandt/lib && make', config = function() vim.g.CommandTPreferredImplementation = 'lua' require('wincent.commandt').setup({}) end...

Thank you, it fixed the packer issue, but ``` Error executing Lua callback: .../start/command-t/lua/wincent/commandt/private/window.lua:131: Vim(let):E716: Key not present in Dictionary: "rhs" stack traceback: [C]: in function 'nvim_set_current_win' .../start/command-t/lua/wincent/commandt/private/window.lua:131: in function...

no unfortunately, but i was able to find that https://github.com/jiangmiao/auto-pairs is causing the issue. If i disable the plugin, the issue is gone. I don't have any settings for the...

> But first, do something like this to confirm the theory: > > ```lua > require('wincent.commandt').setup({ > mappings = { > i = { > [''] = false, > },...

thank you, it seems that the plugin is not supported any more https://github.com/jiangmiao/auto-pairs/issues/309, i switched to https://github.com/windwp/nvim-autopairs instead. I think there's no need to produce workarounds in this case. I...

according to docs, packer has `setup` callback: ``` setup = string or function, -- Specifies code to run before this plugin is loaded. ``` will it be fine to do...

thank you for the explanation, works fine with `setup` callback

Hi @wincent ,when i press `Ctrl-w` in nvim buffer in insert mode, it will delete the word, the same goes for example when i use https://github.com/ibhagwan/fzf-lua. But this is not...

thank you for the explanation. The thing is that i'm using kitty terminal and by default `Shift-CTRL-W` is mapped to close current kitty window. I checked how it's implemented in...

I did this for fzf-lua to browse projects and their files: ```lua local fzf_lua = require("fzf-lua") vim.keymap.set('n', '\\p', function() local history = require("project_nvim.utils.history") local results = history.get_recent_projects() fzf_lua.fzf_exec(results, { actions...