Vim like navigation keys for Finder
So I use vim all the time, and I've grown use to the navigation keys h, j, k, l, (especially when navigating with NERDTree).
Does anyone know if it's possible to implement this motion in macOS Finder.app?
I thought of remapping the keys using something like Karabiner or BetterTouchTool, but in either case, I would not be able to use those keys when renaming a file.
keyboard finder vi
add a comment |
So I use vim all the time, and I've grown use to the navigation keys h, j, k, l, (especially when navigating with NERDTree).
Does anyone know if it's possible to implement this motion in macOS Finder.app?
I thought of remapping the keys using something like Karabiner or BetterTouchTool, but in either case, I would not be able to use those keys when renaming a file.
keyboard finder vi
add a comment |
So I use vim all the time, and I've grown use to the navigation keys h, j, k, l, (especially when navigating with NERDTree).
Does anyone know if it's possible to implement this motion in macOS Finder.app?
I thought of remapping the keys using something like Karabiner or BetterTouchTool, but in either case, I would not be able to use those keys when renaming a file.
keyboard finder vi
So I use vim all the time, and I've grown use to the navigation keys h, j, k, l, (especially when navigating with NERDTree).
Does anyone know if it's possible to implement this motion in macOS Finder.app?
I thought of remapping the keys using something like Karabiner or BetterTouchTool, but in either case, I would not be able to use those keys when renaming a file.
keyboard finder vi
keyboard finder vi
edited 2 hours ago
Nimesh Neema
14.6k43871
14.6k43871
asked 5 hours ago
Benjamin Chausse
335
335
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Vim can get addictive once we get the hang of it. To vim-ify the Finder is a lovely idea.
However, what features are you thinking about? For example, browsing files using the navigation keys h, j, k, l, then pressing i to enter edit mode and rename files or folders?
Vim’s power lies in text mode, whereas macOS interface is designed to be used with a mouse/trackpad. It may be better to stick with vim to process textual information, and to use mouse/trackpad in a graphical environment.
By the way, I cannot see a simple and effective way to hack the Finder (as you said Karabiner is fantastic, but it just won't do it). It would probably require to program a specific macOS Finder utility using Swift.
Alternatively:
Some code editors can be controlled the vim way, like Sublime Text, via a plugin.
The bash shell running in Terminal.app can be used in vi mode using
set -o vi
orset editing-mode vi
.
There are great textual file managers ready to install via Homebrew that worth a try, like:
nnn. To install run
brew install nnn
.lf. To install run
brew install lf
.vifm. To install run
brew lf
.ranger. To install run
brew install ranger
.midnight-commander. To install run
brew install midnight-commander
. Run by typingmc
.fdclone. To install run
brew install fdclone
. Run by typingfd
.
New contributor
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.
– Ruslan
56 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "118"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f346941%2fvim-like-navigation-keys-for-finder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Vim can get addictive once we get the hang of it. To vim-ify the Finder is a lovely idea.
However, what features are you thinking about? For example, browsing files using the navigation keys h, j, k, l, then pressing i to enter edit mode and rename files or folders?
Vim’s power lies in text mode, whereas macOS interface is designed to be used with a mouse/trackpad. It may be better to stick with vim to process textual information, and to use mouse/trackpad in a graphical environment.
By the way, I cannot see a simple and effective way to hack the Finder (as you said Karabiner is fantastic, but it just won't do it). It would probably require to program a specific macOS Finder utility using Swift.
Alternatively:
Some code editors can be controlled the vim way, like Sublime Text, via a plugin.
The bash shell running in Terminal.app can be used in vi mode using
set -o vi
orset editing-mode vi
.
There are great textual file managers ready to install via Homebrew that worth a try, like:
nnn. To install run
brew install nnn
.lf. To install run
brew install lf
.vifm. To install run
brew lf
.ranger. To install run
brew install ranger
.midnight-commander. To install run
brew install midnight-commander
. Run by typingmc
.fdclone. To install run
brew install fdclone
. Run by typingfd
.
New contributor
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.
– Ruslan
56 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
add a comment |
Vim can get addictive once we get the hang of it. To vim-ify the Finder is a lovely idea.
However, what features are you thinking about? For example, browsing files using the navigation keys h, j, k, l, then pressing i to enter edit mode and rename files or folders?
Vim’s power lies in text mode, whereas macOS interface is designed to be used with a mouse/trackpad. It may be better to stick with vim to process textual information, and to use mouse/trackpad in a graphical environment.
By the way, I cannot see a simple and effective way to hack the Finder (as you said Karabiner is fantastic, but it just won't do it). It would probably require to program a specific macOS Finder utility using Swift.
Alternatively:
Some code editors can be controlled the vim way, like Sublime Text, via a plugin.
The bash shell running in Terminal.app can be used in vi mode using
set -o vi
orset editing-mode vi
.
There are great textual file managers ready to install via Homebrew that worth a try, like:
nnn. To install run
brew install nnn
.lf. To install run
brew install lf
.vifm. To install run
brew lf
.ranger. To install run
brew install ranger
.midnight-commander. To install run
brew install midnight-commander
. Run by typingmc
.fdclone. To install run
brew install fdclone
. Run by typingfd
.
New contributor
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.
– Ruslan
56 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
add a comment |
Vim can get addictive once we get the hang of it. To vim-ify the Finder is a lovely idea.
However, what features are you thinking about? For example, browsing files using the navigation keys h, j, k, l, then pressing i to enter edit mode and rename files or folders?
Vim’s power lies in text mode, whereas macOS interface is designed to be used with a mouse/trackpad. It may be better to stick with vim to process textual information, and to use mouse/trackpad in a graphical environment.
By the way, I cannot see a simple and effective way to hack the Finder (as you said Karabiner is fantastic, but it just won't do it). It would probably require to program a specific macOS Finder utility using Swift.
Alternatively:
Some code editors can be controlled the vim way, like Sublime Text, via a plugin.
The bash shell running in Terminal.app can be used in vi mode using
set -o vi
orset editing-mode vi
.
There are great textual file managers ready to install via Homebrew that worth a try, like:
nnn. To install run
brew install nnn
.lf. To install run
brew install lf
.vifm. To install run
brew lf
.ranger. To install run
brew install ranger
.midnight-commander. To install run
brew install midnight-commander
. Run by typingmc
.fdclone. To install run
brew install fdclone
. Run by typingfd
.
New contributor
Vim can get addictive once we get the hang of it. To vim-ify the Finder is a lovely idea.
However, what features are you thinking about? For example, browsing files using the navigation keys h, j, k, l, then pressing i to enter edit mode and rename files or folders?
Vim’s power lies in text mode, whereas macOS interface is designed to be used with a mouse/trackpad. It may be better to stick with vim to process textual information, and to use mouse/trackpad in a graphical environment.
By the way, I cannot see a simple and effective way to hack the Finder (as you said Karabiner is fantastic, but it just won't do it). It would probably require to program a specific macOS Finder utility using Swift.
Alternatively:
Some code editors can be controlled the vim way, like Sublime Text, via a plugin.
The bash shell running in Terminal.app can be used in vi mode using
set -o vi
orset editing-mode vi
.
There are great textual file managers ready to install via Homebrew that worth a try, like:
nnn. To install run
brew install nnn
.lf. To install run
brew install lf
.vifm. To install run
brew lf
.ranger. To install run
brew install ranger
.midnight-commander. To install run
brew install midnight-commander
. Run by typingmc
.fdclone. To install run
brew install fdclone
. Run by typingfd
.
New contributor
edited 1 hour ago
Nimesh Neema
14.6k43871
14.6k43871
New contributor
answered 2 hours ago
Yoric
1363
1363
New contributor
New contributor
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.
– Ruslan
56 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
add a comment |
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.
– Ruslan
56 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.– Ruslan
56 mins ago
It may be better <...> to use mouse/trackpad in a graphical environment.
Not always. I consider modern web browsers graphical environments, and there used to be quite some extensions like Vimperator, which worked quite successfully (until broken by changing APIs). So there might have been a similarly useful extension for Finder.– Ruslan
56 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
@Ruslan: Vimium-FF, based off its Chrome counterpart, works quite well with latest Firefox.
– wchargin
15 mins ago
add a comment |
Thanks for contributing an answer to Ask Different!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f346941%2fvim-like-navigation-keys-for-finder%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown