Giter VIP home page Giter VIP logo

Comments (6)

steve-lorimer avatar steve-lorimer commented on May 27, 2024 1

Thank you!

from telescope-file-browser.nvim.

fdschmidt93 avatar fdschmidt93 commented on May 27, 2024 1

You're welcome :)

I know a quiet option may still be desirable, but just to note any notifications now should be much less intrusive as hit-enter should now be properly avoided everywhere it could pop up (at the very least any practical situation).

from telescope-file-browser.nvim.

fdschmidt93 avatar fdschmidt93 commented on May 27, 2024

Yeah, we should probably do this as part of #72

from telescope-file-browser.nvim.

fdschmidt93 avatar fdschmidt93 commented on May 27, 2024

Ok, I've looked a bit more into this and it's surprisingly tricky; it's essentially a mechanism such that (n)vim supposedly is able to give you more info and to be able to be redrawn after confirmation (which hardly is relevant in the usage here).

To reduce the number of hit-enter prompts:

  • Set 'cmdheight' to 2 or higher.
  • Add flags to 'shortmess'.
  • Reset 'showcmd' and/or 'ruler'.
  • Make sure :echo text is within |v:echospace| screen cells.

See :h hit-enter prompts.

So as an intermediate solution, one thing to do would be something akin to

local silent_action = function(action)
  return function(prompt_bufnr)
    local cmd = string.format([[lua require "telescope".extensions.file_browser.%s(%d)]], action, prompt_bufnr)
    vim.cmd(cmd)
  end
end

require("telescope").setup {
  extensions = {
    file_browser = {
      mappings = {
        ["i"] = {
          ["<A-y>"] = silent_action "copy",
        },
      },
    },
  },
}

I'll try to see how hit-enter can be cleanly avoided, though a super clean solution is not immediately apparent (cf. suggestions to reduce no. of prompts..).

from telescope-file-browser.nvim.

jamestrew avatar jamestrew commented on May 27, 2024

Yeah I was struggling with this very thing in the i/o refactoring in #72 trying to deal with this issue and #87.

from telescope-file-browser.nvim.

fdschmidt93 avatar fdschmidt93 commented on May 27, 2024

As an update: see #87 (comment)

from telescope-file-browser.nvim.

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.