Code Monkey home page Code Monkey logo

Comments (3)

justrajdeep avatar justrajdeep commented on June 15, 2024

I tried changing the mapping to something like this

command! -bang -complete=file -nargs=1 LS  call fzf#run(fzf#wrap('ls_filelist', {'source': '\bat <q-args> | \xargs \rg --line-number --no-heading --color=never --smart-case --follow --hidden "[A-Za-z0-9]" ' }, <bang>0))

sometimes it works ... sometimes it does not ... i am not sure what is breaking it

from fzf.

junegunn avatar junegunn commented on June 15, 2024

You didn't specify your sink function, so fzf#run chooses the default implementation that doesn't understand FILENAME:LINE:COL format. It can only process FILENAMEs.

In short, you need to provide your own sink (or sink*) function.

Or, you can have a global autocmd in your Vim configuration that handles the format.

This is what I have in my .vimrc

" ----------------------------------------------------------------------------
" Open FILENAME:LINE[:COL]
" ----------------------------------------------------------------------------
function! s:goto_line()
  let tokens = matchlist(expand('%'), '^\([^:]\+\):\(\d\+\)\%(:\(\d\+\)\)\?$')
  if empty(tokens) || !filereadable(tokens[1])
    return
  endif

  bd!
  silent execute 'e' tokens[1]
  execute printf('normal! %sG%s|', tokens[2], tokens[3])
endfunction

autocmd vimrc BufNewFile * nested call s:goto_line()

from fzf.

justrajdeep avatar justrajdeep commented on June 15, 2024

Thanks

from fzf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.