-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export and import customized shortcuts (partially fixed in dev) #245
Comments
I would very much love to see Sync support included as well. I haven't looked into the documentation much for FF APIs, but as I understood it it should be as simple as flagging the various about:config settings to be synced. If it is that simple, then enabling sync on EDIT: Seems like I was right. The Sync documentation documents how to flag a preference for sync. A lot of boolean true |
Yeah, seems trivial. There are two open questions:
|
Is it possible to add |
Ah right, good idea! Will test on Monday when I'm back home |
Might I you guys take this as a chance to implement a .vimfx file instead of export/import? This is in addition to sync of course. |
Nope, no .vimfx file. A similar idea was discussed in #149, in there @akhodakivskiy sums it up:
|
Would it be possible to just have a box where to configure the custom key mapping as Vimium for Chrome has? That solution is perfectly usable by people used to text files, which are the only people who would use vim-inspired keybindings, and allows porting the bindings back and forth between chromium and firefox. |
@dvarrazzo Vanilla text presentation of key mappings would also allow porting between multiple Firefox profiles, which is another feature request, other than syncing. And as we rarely configure these keys after the initial setup, I think the advantages or convenience the current mapping interface provides are less than needed, especially when syncing is implemented. |
I’m actually in favor of a .vimfx file now.
This is what I suggest:
Lastly, the current key customization UI in the help dialog is not optimal, and it is buggy. I’ve been meaning to improve it, but never got around to it. That’s one of the more boring parts of VimFx. I’d rather spend time on implementing the simple configuration file and improving and adding features to VimFx, than on fixing that UI. What do you think, @akhodakivskiy? I know that you’ve said that you want all prefs to be done the standard Firefox way, but I don’t think the standard Firefox way fits VimFx very well. JSON strings as pref values make me iffy. |
Manipulating plain texts is for sure more enjoyable for us Vim users. But I guess we don't need such an external configuration file. Instead, I suggest keep all customizations in a single editable text area, inside the addon's option page. |
I think I’ve come up with the perfect compromise between the current customization, a plain text area of configuration and a .vimfxrc file, that let us get all the benefits of text configuration without changing the current look and feel. I’ll post my ideas soon. |
I think the “help dialog” should have a tab which consists of a text area, where the user can configure VimFx.
You will still be able to customize the keyboard shortcuts (semi-)interactively, just like now.
Blacklisting using the toolbar button works like before. But instead of modifying the blacklist string setting, the configuration is modified, by adding and removing Lastly, some random notes:
|
Hello @lydell and @akhodakivskiy. Have you made up your mind about this topic? I'm just a normal user, so sync via firefox sync would be greatly appreciated. However, I can workaround with git dotfiles as well. Let me also say thanks for your previous work. |
Nope, we haven’t decided on anything, and haven’t implemented Firefox sync support. My vision is this:
I start my vacation next week, and plan to devote some more time on VimFx then. |
What's the status on this? I'd really like to be able to export/import settings, since I make extensive use of custom key bindings... |
This is not a priority right now. I’d suggest looking for an add-on that can import and export Firefox prefs in general. Perhaps OPIE is a good choice. |
I just realized that at least enabling Firefox Sync support for what we already have might be quick and simple. However, the MDN dkcs @evaryont linked to is now in the "Archive of obsolete content". I don't use Firefox Sync myself, so I don't know much about it. Is it no longer possible to sync add-on prefs? |
I do use Firefox Sync, and it is possible to sync add-on prefs. We just need to set up a few additional properties to enable sync, e.g. properties like |
I’m just worried because all Firefox sync docs on MDN are archived … |
This commit is unfortunately very large. I do not like that, but most of the things in this commit are very closely related, which made it easier to do it this way. Help dialog =========== - It is no longer used to customize shortcuts. That's done in VimFx's settings in the Add-ons Manager instead. - Moved "enjoying/found bug" from the Help dialog and into the readme. The readme will be used as the extension description on AMO. That description is also shown in the Add-ons Manager, so users will see it when customizing VimFx. - It is no longer injected inside web pages, but in the Firefox chrome. This allows to get rid of the nasty resets in the CSS and makes it impossible for page elements to cover it. #477 - It now fills the entire page and adjusts based on your screen size. It is designed to work with lots of shortcut customization and the additon of new modes by other extensions. - Added `gulp help.html` to make it easier to style the help dialog. Settings UI =========== - Shortcuts customization is now done in VimFx's settings page in the Add-ons Manager. This keeps all settings together and makes it obvious that you can customize the shortcuts. The new UI is also more accessible. - The new UI also lets you: - Insert the default value of a pref. This is useful for the "prev/next patterns" by letting you merge in new defaults into your own customizations. - Reset to the default value. #262 - Insert the next keypress as text. The default shortcut for this is `<c-q>`. (q as in quote. vim also has this shortcut, which works like its `<c-v>`.) For example, if the user is unsure how to express `<c-enter>` (s)he could simply press `<c-q><c-enter>` and `<c-enter>` would be inserted as text. Button ====== - Now has high-resolution images. #383 - Is now implemented using CustomizableUI. #303 #349 - Greatly simplified: - If in normal mode, clicking it opens the help dialog. - Otherwise it exits the current mode returning to normal mode. This is useful if the user accidentally removes the keyboard shortcuts to exit modes, or don't know how to exit insert mode, for example. The above means that the "disable" feature has been removed. The UI to "blacklist" sites has been removed as well. See the "Removed/Changed/Addesd features" section for more info. - It is now easily stylable with user CSS. - State is no longer lost when moving a tab into a new window. #57 Removed/Changed/Added features ============================== - The "disable" feature has been completely removed. It is rather useless compared to insert mode, and sometimes trips new users up. #327 - The "blacklist" feature has been changed into an "auto-insert-mode" feature. It is basically the same, except that you can actually choose to leave the blacklisted state for a while if you feel like it. The default shortcut to leave insert (`<s-escape>`) is not likely to conflict with page shortcuts. It is possible to disable the exit shortcut on certain pages using the public API. - The "blacklist" feature has been de-emphasized. The button no longer offers any UI to blacklist and un-blacklist sites (see above). VimFx is supposed to be keyboard driven, so having a mouse-oriented UI makes no sense. Blacklisting is also a bit of an anti-feature, so we shouldn't maintain lots of UI code for it. It's simple enough to just open the Add-ons Manager and add `*currentdomain.com*` to the blacklist setting. - The "blacklist" no longer supports the `!` wild card (that matched a single character) to keep things simple. The less to explain to the user the better. If users need more advanced wildcards than the simple `*` they can use the public API (see the Public API section) which allows to use all of JavaScript's power. - The "blacklist" no longer supports the `##key1#key2` syntax to disable certain keys on certain sites. Instead a superior public API function is offered. This feature only existed in the develop branch for a while and was never released. Any users of it must manually move to the public API. - The "prev/next patterns" no longer support the `*` and `!` wildcards. Instead they are treated as regexes (which allows to use `.*` and `.` instead). This is way simpler, and more powerful. Non-technical users can just keep adding simple patterns such as "next" translated into their language without being troubled by regex syntax, while advanced users can use the full power of regex if needed. The public API may of course also be used for unlimited power. - The "blacklist" and "prev/next patterns" are no longer comma/space-separated. To keep things simple their just space-separated. Space is not a valid URL character, but a comma is, so this allows to match a URL which ends with a comma (but that is probably too rare to ever be useful). More importantly it makes the settings easier to read. Space could be part of a "prev/next pattern", though. Thanks to the above point one may use `\s` instead, which is also more robust. The prefs are automatically migrated to the new format. - The "translations" pref in about:config is no longer used. Instead you have to use the public API. This is because it is an advanced feature and next to impossible to manage as a single line of JSON. This also keeps the code simpler. The pref only existed in the develop branch for a while and was never released. Any users of it must manually move to the public API. - Most hard-coded constants have been moved into prefs, which can only be changed via about:config or the public API. For advanced users only. For example: - "prev/next patterns" attributes. #489 - "target blank prevention". #452 - Pressing `aj` used to trigger the `j` shortcut, but doesn't any longer. Since there is no `aj` shortcut (by default) nothing happens. The reason that "feature" used to exist was because there used to be no concept of a timeout. For example if you pressed `a`, went from the computer for a while, came back and pressed `/` the `a/` shortcut would be invoked, which is a bit surprising. Now there is a timeout instead, which defaults to 2 seconds. So if you type `aj` with less than 2 seconds between the key presses, nothing will happen. Otherwise the `a` partial match will be cancelled and the `j` command will be invoked. This is more like vim works. - The escape command used to be special-cased so that you could trigger it inside text boxes. Now this is done through the concept of "force keys" instead. If you add `<force>` at the beginning of a shortcut it will be available in text boxes as well. #194 Refactoring =========== - All modes are know implemented the same way. Normal mode used to be special-cased and all other modes were rather limited. - Commands and modes are now a lot more DRY. - defaults.coffee now takes care of command categorization and ordering. It is essentially the text version of the help dialog. Changing order and/or categories there automatically affects the help dialog (and the settings UI) as well. - The command matching algorithm is now much more simple and flexible. - Because the help dialog was moved into browser chrome, there is no longer any need to insert the style sheet as an `AGENT_SHEET`, which made it difficult to override it with user CSS, for example to change the font size or color of hint markers. #465 #424 #233 #220 Public API ========== Added a public API. This will be used by advanced users and by other extensions that wish to extend VimFx. It allows to: - Keep all VimFx configuration in a text file (instead of configuring it via VimFx’s GUI and storing it in Firefox’s prefs system). #245 - Add your own custom commands. #508 #490 #235 - Add site-specific options. - Disable specific keys on some sites. #255 - Do things when entering pages, such as automatically entering insert mode (this can be used instead of the "blacklist" feature) or hints mode. #408 - Set some advanced settings that cannot be set any other way. - Add new command categories. - Add new modes.
In the latest development version it is now possible to optionally configure VimFx via a config file. No Firefox Sync support yet, though. |
Time won’t be spent on an obsolete feature. If anyone’s into this Firefox Accounts thing, feel free to open a new issue for it. |
Import/export is now available in the development version, but no syncing. |
Support export and import customized shortcuts?
The text was updated successfully, but these errors were encountered: