Coder Social home page Coder Social logo

Comments (2)

losingkeys avatar losingkeys commented on September 28, 2024

I think usually that's a problem with the value of g:agprg, but adding the smart case option shouldn't cause issues with the default value of that variable. I'll try to look into this sometime in the next few days. Thanks for the report :)

On Feb 6, 2014, at 5:47 PM, Michael Mahemoff [email protected] wrote:

As I wanted to add a flag, I added this to vimrc:

let agprg="Ag --smart-case"
The problem is every line in quickfix begins with "|| " instead of the filename, e.g.

|| data/devices.txt:4:gadget

Not sure why that happens. The prefix is preventing quickfix from opening these files. It works fine without "let agprg", so is there any way to remove the double pipe?


Reply to this email directly or view it on GitHub.

from ag.vim.

losingkeys avatar losingkeys commented on September 28, 2024

By default g:agprg uses the --column option, which includes the columns numbers in the search results. Because of this, the default g:agformat value is "%f:%l:%c:%m" (see :h errorformat or this plugin's docs for more info). Without the --column option, there are only line numbers in the search results ag returns, so you'll need to either add the --column option or change g:agformat to not look for column numbers, like so:

let g:agformat="%f:%l:%m"

from ag.vim.

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.