Answer the question
In order to leave comments, you need to log in
How to properly configure the FileBrowser plugin in SublimeText 3?
There is an interesting FileBrowser plugin for SublimeText, which allows you to almost completely eliminate the mouse when working with the editor.
According to the description, I make settings in the "Key Bindings - User" section
Opening the file panel in the left window using F1, and closing the panel when pressing the Enter key on the selected file (with subsequent opening of this file for editing):
[
{
"keys": ["f1"],
"command": "dired",
"args": {
"immediate": true,
"single_pane": true,
"other_group": "left",
"project": true
}
},
{
"keys": ["enter"],
"command": "dired_select", "args": {"and_close": true},
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.dired" },
{ "key": "setting.dired_rename_mode", "operand": false }
]
}
]
Answer the question
In order to leave comments, you need to log in
A bit late, maybe, but here's the solution:
[
{
"keys": ["f1"],
"command": "dired",
"args": { "immediate": true}
},
{
"keys": ["enter"],
"command": "dired_select", "args": {"and_close": true},
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.dired" },
{ "key": "setting.dired_rename_mode", "operand": false }
]
}
]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question