rpeshkov / vscode-text-tables

VSCode extension that brings the power of Emacs table editing
MIT License
38 stars 14 forks source link

Conflicting with VSCodeVim #44

Open timfayz opened 5 years ago

timfayz commented 5 years ago

Hello!

I use VSCodeVim and recently installed your ext. Find it very useful - thank you :) However, I can't get it work with Vim extension. My status always shows "Table Mode: Off" despite triggering "Text Tables: Enable" in command palette. It works only if I disable Vim ext. Any ideas/workarounds?

I tried the following:

    {
        "key": "ctrl+q",
        "command": "-extension.vim_ctrl+q",
    },

In hope of passthrough Vim handling. But it didn't give me anything.

fmver1 commented 4 years ago

I have made the following settings to avoid this problem.

// Use the shortcut key of VSCode itself
    "vim.handleKeys": {
        "<C-q>": false
    }