Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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' }
}
```