mechatroner / sublime_rainbow_csv

🌈Rainbow CSV - Sublime Text Package: Highlight columns in CSV and TSV files and run queeries in SQL-like language
MIT License
117 stars 8 forks source link

Keybinding #33

Open rgant opened 2 years ago

rgant commented 2 years ago

Sublime maps F5 to sort. But so does this plugin, and somehow now both are happening.

.../Sublime Text 3/Packages/Default/Default (OSX).sublime-keymap

    { "keys": ["f5"], "command": "sort_lines", "args": {"case_sensitive": false} },
    { "keys": ["ctrl+f5"], "command": "sort_lines", "args": {"case_sensitive": true} },

Can you pick a different key?

mechatroner commented 2 years ago

According to this issue, this should only happen with OSX. I am also not sure why both commands are getting triggered this is really strange, should be either one or another, perhaps a bug with ST3 itself?

rgant commented 2 years ago

Sublime Text 4 (4126) is the current version, and the version I am using.