Is there a command to quickly jump to a typed char sequence in the current line in Vi? Kinda type-and-seach in a file explorer.
I'm aware, that I can jump to the next specified char with fa (where 'a' is the wanted character here) or reverse with a capital F. But often a single character does not help. I know also, that I can search with / or ? and a regular expression. But that's to much and to slow for this use case. My alternative is then to use the 'find char' command with a number or do the same with b...
To break it down, I'm searching for something like fabc, where fa jumps to the next 'a'. When hitting the 'b' it goes to the next char sequence 'ab' (could be the same position) and so further with 'c'.
Maybe this is a bit special. But as Bram Moolenaar said: "While you are editing, keep an eye out for actions you repeat and/or spend quite a bit of time on." [1]
Vi - Jump to char sequence in line
445 Views Asked by weilbith At
0
There are 0 best solutions below
Related Questions in VIM
- Firefox vim mode, can't switch to normal mode in style editor
- How to skip a command in redo
- Vim errorformat multiline string
- How to let Vim tell the switching across several `gvim.exe` processes?
- match wordchar and/or dot string of anylength
- augment the number of lines on indent
- Barebones vim with `nocp`
- Moved .vimrc in a new dir, trying to get it to work
- Copying text from gvim editor to system clipboard works only once per session
- Temporarily declare a word as wrong in vim spellchecker
- Automatically switch back to NerdTree after pressing "o" on file
- How to use Ctags to list all the references of a symbol(tag) in vim?
- Vim + Airline + Linux sloppy exit
- How to delete a WORD in vim in insert mode
- Prevent single letter deletes to spam clipboard manager
Related Questions in NAVIGATION
- Bootstrap horizontal to vertical navigation
- Scrollable webpage navigation
- html/css Vertical Navigation Bar
- Why in some case the selected of the iron-page doesn't work?
- Element on my website overlaps on menu
- Magento: How To add category Description in topmenu?
- How to make a navbar that works on all screen sizes?
- Launch user's custom navigation app
- Javascript to change class in <ul> tag not working
- Navigation partial not updating even though controller $scope has new value
- Make nav bar various level of transparency RGBA
- Android support:design NavigationView checked menu sub items
- Styling Two Navigation Bars
- ASP MVC Bootstrap Navigation Dropdowns: Hover on Large Screen, Click on Small
- how to select a different menu using wp_nav_men on wordpress
Related Questions in VI
- vi/fugitive: Gpush does not exit... sometimes
- How to append chars except empty and comment-out lines via VIM?
- mac os vi disable,and reminder me "UltiSnips requires py >= 2.6 or any py3"
- Copying to clipboard in vi
- Regex Match without new line ^M
- linux vi editor special character gets converted into something else
- VI editor - saving filename in :wq
- Disable Wrapping Cursor in Eclipse
- Vim remove part of line in a file
- convert a string in upper case in vi
- Shell Scripting - How to unzip a file and edit it by shell script?
- how to remove unwanted text in vi with regex or similar pattern match
- How can I display <TAB> as bars in vim
- Replacing varying length text over multiple lines in Vim
- How to prevent wrapping string in quotes while enable auto-wrap in vim?
Related Questions in EX
- bash variable isn't working with ex in script
- Copying pattern from set of lines with Vim's Ex mode
- How to read a excel file with merged cells in php?
- Vim script for automatic function insertion
- Regular expression for IP Address
- How to get the method name and line number in Exception in ASP Core 5
- Why ex (vim) is catching matching pattern to the end of line
- Why vim doesn't insert cyrillic symbols properly in Ex mode?
- How to write an ex script that searches for text and deletes the next n lines?
- Vi - Jump to char sequence in line
- Running .exe directly & through Shell VBA returning different results
- I am looking for a way to shorten this code by consolidating each "Case is" instant into one getting the case name from a variable
- Regular expression works in vim but fails in vim's ex mode
- How to replace quotes inside a quoted field of a non-standard CSV file using a one-liner bash command?
- How can I select part of a line in Vim
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?