https://github.com/hugginsio/telescope-scriptnames.nvim
Display your `:scriptnames` in a Telescope picker.
https://github.com/hugginsio/telescope-scriptnames.nvim
Last synced: 7 months ago
JSON representation
Display your `:scriptnames` in a Telescope picker.
- Host: GitHub
- URL: https://github.com/hugginsio/telescope-scriptnames.nvim
- Owner: hugginsio
- License: bsd-3-clause
- Created: 2024-09-07T21:35:36.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-09T11:21:57.000Z (about 1 year ago)
- Last Synced: 2025-01-29T22:46:19.573Z (8 months ago)
- Language: Lua
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 🔠telescope-scriptnames.nvim
Display `:scriptnames` in a Telescope picker. Select to open the file in a new buffer.
## Requirements
- [`nvim-telescope/telescope.nvim`](https://github.com/nvim-telescope/telescope.nvim)
## Configuration
Install using your favorite plugin manager. Whatever you choose, make sure you register it with Telescope:
```lua
require("telescope").load_extension "scriptnames"
```## Usage
Once loaded by Telescope, you can launch the picker with this command:
```
:Telescope scriptnames
```Or, from Luascript:
```lua
require("telescope").extensions.scriptnames.scriptnames()
```