Vim Tips Wiki
Line 7: Line 7:
   
 
I think these would be two small improvements for making this script really life-changing. <small>--Preceding [[Vim Tips Wiki:Quick reference|unsigned]] comment added by [[User:BlackLight01|BlackLight01]] 19:27, February 6, 2011</small>
 
I think these would be two small improvements for making this script really life-changing. <small>--Preceding [[Vim Tips Wiki:Quick reference|unsigned]] comment added by [[User:BlackLight01|BlackLight01]] 19:27, February 6, 2011</small>
  +
  +
----
   
 
Author no longer seems to be interested in plugin development, I started fork at https://github.com/vlmarek/PreciseJumpVlad
 
Author no longer seems to be interested in plugin development, I started fork at https://github.com/vlmarek/PreciseJumpVlad
  +
  +
To answer the previous question, both works for me, I'm using this config to achieve that:
  +
<code>
  +
nmap <unique> <leader>f :call PreciseJumpF(-1, -1, 0)<cr>
  +
vmap <unique> <leader>f <ESC>:call PreciseJumpF(-1, -1, 1)<cr>
  +
omap <unique> <leader>f :call PreciseJumpF(-1, -1, 0)<cr>
  +
</code>
  +
--[[User:Vlmarek|Vlmarek]] ([[User talk:Vlmarek|talk]]) 21:12, December 21, 2013 (UTC)
   
 
==Comments==
 
==Comments==

Revision as of 21:12, 21 December 2013

Use this page to discuss script 3437 PreciseJump: ease motion within a line

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Visual mode and whole-buffer mode

I am already addicted to this script, and I thank you for your job. I just have a two-points wishlist:

  • Is it possible to have it working in visual mode as well? For instance, I could enter visual mode, and select everything until i meet a certain 'c' character
  • Is it possible to have it working not only on one line, but on the whole buffer? I can type, for example, '_Fc', and it finds all the occurences of 'c' not only on the cursor line itself, but in the whole buffer.

I think these would be two small improvements for making this script really life-changing. --Preceding unsigned comment added by BlackLight01 19:27, February 6, 2011


Author no longer seems to be interested in plugin development, I started fork at https://github.com/vlmarek/PreciseJumpVlad

To answer the previous question, both works for me, I'm using this config to achieve that: nmap <unique> <leader>f :call PreciseJumpF(-1, -1, 0)<cr> vmap <unique> <leader>f <ESC>:call PreciseJumpF(-1, -1, 1)<cr> omap <unique> <leader>f :call PreciseJumpF(-1, -1, 0)<cr> --Vlmarek (talk) 21:12, December 21, 2013 (UTC)

Comments