Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LukasPietzschmann/telescope-sessions
A session-switcher extension for sessions.nvim using telescope.nvim
https://github.com/LukasPietzschmann/telescope-sessions
nvim telescope
Last synced: 4 months ago
JSON representation
A session-switcher extension for sessions.nvim using telescope.nvim
- Host: GitHub
- URL: https://github.com/LukasPietzschmann/telescope-sessions
- Owner: LukasPietzschmann
- License: bsd-3-clause
- Created: 2022-09-09T09:59:28.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-10T08:40:58.000Z (about 2 years ago)
- Last Synced: 2024-05-05T15:35:05.181Z (7 months ago)
- Topics: nvim, telescope
- Language: Lua
- Homepage:
- Size: 5.86 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# telescope-sessions
telescope-sessions extends [sessions.nvim](https://github.com/LukasPietzschmann/sessions.nvim) through telescope.nvim.## Usage
You can show the picker from neovim's cmd-line by executing
```viml
:Telescope telescope-sessions search_sessions
```Or straight from the plugin's path with lua
```viml
:lua require('telescope-sessions').search_session()
```You can press `C-d` on any Item in the picker to delete the session.
## Installation
Install with your favorite Neovim package manager. Just make sure that you also install [sessions.nvim](https://github.com/LukasPietzschmann/sessions.nvim)!Example with packer.nvim:
```lua
use {
'LukasPietzschmann/telescope-sessions',
requires = { 'LukasPietzschmann/sessions.nvim' }
}
```