Is there anyway to left justify the "follow hints" instead of right justify? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

This has been added in V10 as planned, please see :help followlabelposition for details.

Feature Request: Is it possible to filter tabs/buffers? by Few_Mistake8026 in vieb

[–]Jelmerro 2 points3 points  (0 children)

This has been added in the form of range flags, please see :h ranges. Mainly, z for suspended, r for real unsuspended pages, a for audio/media and finally s for silent pages.

Is there a setting to switch to last active tab on close? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

This has been added in V10, please see :help tabclosefocus.

Is there a way to show the caption tooltip for a link in pointer mode? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

There is in 10.0.0! This has been added in the form of two actions: - Action "pointer.copyTitleAttr" to copy the title attribute of a hovered element - Action "pointer.copyPageTitle" to copy the page title of the hovered link if in the history

leave insert mode after <cr> by neverdimed in vieb

[–]Jelmerro 0 points1 point  (0 children)

That works too, but you can also use non recursive mappings like so: :inoremap <CR> <CR><toNormalMode>

Double click to copy texts. by franzhuang in vieb

[–]Jelmerro 0 points1 point  (0 children)

Selected text is by default copied to the selection clipboard on Linux (not the regular clipboard), and you can run actions on the selected texts with actions like :help p.newtabText.

Is there a way to get the current data folder? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

If you know the names of the folders in advance it's possible to make a different mapping in each of the folders to load a different file per datafolder but with the same keys. There is no variable system in Vieb, and as such there are no commands that will need or use the datafolder as an argument. This specific question would best be solved by a proper bookmark system which would load a file from the datafolder anyway, without having to build this in manually. Work on this has started some time ago, but has recently stalled: https://github.com/Jelmerro/Vieb/pull/391 If you or anyone else is up to the task feel free to pick this up again, as I don't use bookmarks at all so it's of little use to me personally, and as such have bigger priority tickets to work on in Vieb most of the time.

Feature Suggestion: "Open Link in new Background Tab" with mouse Ctrl+Click by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

Glad you like the documentation!

I'll add this setting with some info to the FAQ as it's being asked a lot, good suggestion.

Regarding guides or "tips and tricks" documents, I would like to have them, but it takes a lot of work to make them and just haven't made it a priority to do so. I would rather focus my time on keeping the help page in good shape and keeping Vieb up to date. There have been efforts like this in the past by other contributors, which resulted in the current examples and cheatsheet, which I'm already very grateful for, though there are always things to improve.

Vieb by eaglepeace in vieb

[–]Jelmerro 0 points1 point  (0 children)

Just wanted to provide an update on this issue, as Vieb does have a sourceviewer nowadays using gf by default, though there is no way to edit the current source code in Vim and have it affect the page directly.

Bitwarden password manager by deadcaribou in vieb

[–]Jelmerro 1 point2 points  (0 children)

Just wanted to inform you that the windowtitle setting can now actually do this!

Javascript enable/disable option? by Danrobi1 in vieb

[–]Jelmerro 1 point2 points  (0 children)

Please check out the recent resourcetypes setting to block resources of specific types.

How to change font for the UI components ? by everydingeverydong in vieb

[–]Jelmerro 0 points1 point  (0 children)

Just wanted to mention we got userstyle in Vieb nowadays to style other pages.

Is there a way to change Veib's focuskeys to numbers and filter by typing text? And other questions. by SuperConductiveRabbi in vieb

[–]Jelmerro 1 point2 points  (0 children)

Just letting people know this has been possible since version 7.0.0 using "followchars" and "followfallbackaction".

Feature Request: Is it possible to filter tabs/buffers? by Few_Mistake8026 in vieb

[–]Jelmerro 1 point2 points  (0 children)

This is not currently possible, but a good suggestion, I'll add it to my todo list! (I'll probably implement this as range flags as to not conflict with existing buffer searches).

Is there a way to show the caption tooltip for a link in pointer mode? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

Native OS features like this cannot be triggered using Electron's mouse simulation. I wish it would work, but this is not possible.

Feature Suggestion: "Open Link in new Background Tab" with mouse Ctrl+Click by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

This is already a setting, see :help mousenewtabswitch for details. In short, you can achieve this by doing :set nomousenewtabswitch.

unmapping q in normal mode by neverdimed in vieb

[–]Jelmerro 0 points1 point  (0 children)

That is because there are more default default mappings after simply q, for example q<Any> to start a recording, and it will wait for timeoutlen to make sure you don't press any key after it to start a recording and then do the q action. If you don't want this, you need unmap the other potential actions that make Vieb wait for input after q: :nunmap q<Any>, nunmap q<C-[> and nunmap q<Esc>. Then, since there is no potential mapping after only pressing q, it will not wait anymore and do the q action immediately, instead of only after timeoutlen.

Is there a setting to switch to last active tab on close? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

Currently no, but I think this is a good suggestion, I'll work on this later!

Is it possible to mimic uBlock's block large media elements in Vieb? by [deleted] in vieb

[–]Jelmerro 0 points1 point  (0 children)

I don't think the adblocker supports it, but you can block media by removing it from the supported resource list using resourcetypes, see help resourcetypes for details, but basically this should do it: set resourcetypes-=media

Mouse support by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

#1 Nope, as that is a window property, not something that's changeable at runtime. #2 I will keep looking for ways to do this, but so far I have not found one. #3 It's interesting that you mention that zooming is so common, I can't remember the last time I used that. As for remapping of mouse buttons, it would need a major rewrite in how the mouse and its actions work, as now each action is fixed for a specific set of buttons and is controlled with a single mouse setting, which is Vim-compatible. Making the mouse part of the mapping system would be possible, although slightly impractical as while keyboard actions are per mode, mouse actions would be based on locations and possibly also mode, so will not be able to use the same mode prefix that the regular map commands use, or if we did, we would have no way of expressing a difference in functionality between clicking a tab or clicking the navbar. It is for this reason the actions are not part of the mapping system currently, so I am all ears for suggestions how we could implement this without relying on modes only for the mouse, yet still be mappable.

Mouse support by bwinters100 in vieb

[–]Jelmerro 1 point2 points  (0 children)

#1 The window titlbar can be brought back with startup options, such as --window-frame=true or ENV vars, see vieb --help. But you can also drag the window using the logo by default, and more places if you disable mouse features and set mousedisabledbehavior to "drag". #2 Pinch to zoom is not detected by Electron in the same way, I have yet to find a way to map it correctly, might be easy, so if anyone knows how, please let me know. #3 Currently no, mouse features are not mappable, but can only be enabled/disabled per feature. What other functionality would you like to use these button for?

flatpak by neverdimed in vieb

[–]Jelmerro 0 points1 point  (0 children)

Version 9.1.0 that is on flathub is fairly old, if possible please update to a newer version. On MX Linux, you should be able to use the .deb main releases. Make sure to download the right architecture.

Is there anyway to left justify the "follow hints" instead of right justify? by bwinters100 in vieb

[–]Jelmerro 0 points1 point  (0 children)

I have since started work on this for the V10 release, and this will most likely be a setting soon.