-
-
Notifications
You must be signed in to change notification settings - Fork 929
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Description
Also reported here: https://www.reddit.com/r/neovim/comments/v6towp/telescope_tries_to_create_cc_folder/
When doing a clean install, and enable the history functionality, telescope is unable to create the new folder/file.
The direct behavior is after entering the TS UI, I cannot get out. (by either pressing or to select some files).
Neovim version
NVIM v0.9.1
Build type: RelWithDebInfo
LuaJIT 2.1.0-beta3Operating system and version
Windows
Telescope version / branch / rev
checkhealth telescope
==============================================================================
telescope:
- ERROR No healthcheck found for "telescope" plugin.Steps to reproduce
- clean install nvim
- install
telescope - run telescope find-file, find-history, etc.
Expected behavior
No response
Actual behavior
no errors, the history file/folder should be created correctly.
Minimal config
vim.cmd [[set runtimepath=$VIMRUNTIME]]
vim.cmd [[set packpath=/tmp/nvim/site]]
local package_root = '/tmp/nvim/site/pack'
local install_path = package_root .. '/packer/start/packer.nvim'
local function load_plugins()
require('packer').startup {
{
'wbthomason/packer.nvim',
{
'nvim-telescope/telescope.nvim',
requires = {
'nvim-lua/plenary.nvim',
{ 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' },
},
},
-- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
},
config = {
package_root = package_root,
compile_path = install_path .. '/plugin/packer_compiled.lua',
display = { non_interactive = true },
},
}
end
_G.load_config = function()
require('telescope').setup()
require('telescope').load_extension('fzf')
-- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
end
if vim.fn.isdirectory(install_path) == 0 then
print("Installing Telescope and dependencies.")
vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path }
end
load_plugins()
require('packer').sync()
vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua load_config()]]DrKJeff16, FrostyNick and clempat
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
