Git Product home page Git Product logo

telescope-lines.nvim's Introduction

telescope-lines.nvim

A simple Telescope extension to search through the lines in the current buffer.

Installation

Using packer.nvim:

use({
  "neanias/telescope-lines.nvim",
  requires = "nvim-telescope/telescope.nvim",
})

Setup

To enable the extension, add this to your config:

require("telescope").load_extension("lines")

To configure the plugin, you can add to the telescope setup:

local telescope = require("telescope")
telescope.setup({
  -- ...
  extensions = {
    -- These are the default values.
    lines = {
      hide_empty_lines = true,
      trim_lines = true,
    },
  },
})

-- `load_extension` must be called after `telescope.setup`
telescope.load_extension("lines")

The two configuration fields are hide_empty_lines and trim_lines as noted above. hide_empty_lines will hide any lines that are just whitespace from being in the picker, whilst trim_lines will trim leading & trailing whitespace from the lines before sending them to the picker.

Usage

This can be run as a Telescope command

:Telescope lines

or called directly in lua

:lua require("telescope").extensions.lines.lines()

telescope-lines.nvim's People

Contributors

neanias avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

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.