Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

disable Vimperator temporarily

How can I disable Vimperator temporarily? For example, I'd like to disable Vimperator temporarily when I am using a web email app. Is there a command for it?

like image 498
blue123 Avatar asked Jan 11 '13 04:01

blue123


4 Answers

Use Shift+Esc to temporarily disable Vimperator. Press it once again to make it work

like image 133
reFORtEM Avatar answered Oct 17 '22 08:10

reFORtEM


I am guessing you already know about Shift-Esc to temporarily disable vimperator. So I wrote how to disable vimperator based on your current location.

First, the solution:

autocmd LocationChange .*                             js modes.passAllKeys = false
autocmd LocationChange mail\\.google\\.com            js modes.passAllKeys = true
autocmd LocationChange www\\.google\\.com/calendar    js modes.passAllKeys = true
autocmd LocationChange www\\.google\\.com/reader      js modes.passAllKeys = true
autocmd LocationChange mail\\.google\\.com/tasks      js modes.passAllKeys = false

This filters gMail, gCalendar, gReader, but not gTask.

The solution I gave is cascading approach where you define all websites to enable vimperator, then it selectively disables for each website. Thus, even though gTask uses the same parent site as gmail, it has vimperator enabled.

Now the explanation:

These commands go in your .vimperatorrc in the home directory. You can change the location of the .vimperatorrc by

source! *directory*

in .vimperatorrc file, but the default location is .vimperatorrc file in your home directory. (%userprofile% in Windows)

The alternative solution:

autocmd LocationChange .* js modes.passAllKeys = /mail\.google\.com/.test(buffer.URL)

*Notice the backslash to escape the dot.

The problem with this approach is that only the latest line of command with autocmd will take work. Meaning the last autocmd command overwrites the first. So you would end up resulting to boolean operation on the command, like this:

autocmd LocationChange .* js modes.passAllKeys = /(mail\.google\.com|google\.com\/reader)/.test(buffer.URL)

As you can see this can get complicated when you have many websites you want to filter out.

The documentation: http://vimperator.sourceforge.net/help/vimperator/autocommands.xhtml
Source of the solution: http://code.google.com/p/vimperator-labs/issues/detail?id=406

like image 37
Forethinker Avatar answered Oct 17 '22 09:10

Forethinker


you could use :ignorekeys command

ignorekeys add mail.yahoo.com
ignorekeys add mail.google.com

to disable all vimperator keybinding when on those domains.

like image 10
nuaimat Avatar answered Oct 17 '22 08:10

nuaimat


You can use the keyboard-shorcuts for gmail/feedly with feedSomeKeys (a plugin for Vimperator).

How?

  • Get this and this files.
  • Copy both files in ~/.vimperator/plugins (if doesn't exist create it).
  • Add this lines in your ~/.vimperatorrc file:

    :source ~/.vimperator/plugin_libly.js :command! -nargs=+ lazy autocmd VimperatorEnter .* :lazy fmaps -u='mail.google.com/mail' c / j k n p o u e x s r a # [ ] ? gi gs gt gd ga gc

  • Try it!

like image 1
David Avatar answered Oct 17 '22 08:10

David