From 015a35626d5a293dc9c19dc2bb301f25850961f6 Mon Sep 17 00:00:00 2001 From: fdschmidt93 <39233597+fdschmidt93@users.noreply.github.com> Date: Tue, 11 Jan 2022 22:00:31 +0100 Subject: break!: remove file_browser from builtins (#1453) The file_browser now has been fully removed. Please move to github.com/nvim-telescope/telescope-file-browser.nvim for a more featureful extension that replaces the builtin file browser. --- lua/telescope/builtin/init.lua | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'lua/telescope/builtin/init.lua') diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua index 7834da1..9425602 100644 --- a/lua/telescope/builtin/init.lua +++ b/lua/telescope/builtin/init.lua @@ -86,22 +86,6 @@ builtin.find_files = require_on_exported_call("telescope.builtin.files").find_fi --- This is an alias for the `find_files` picker builtin.fd = builtin.find_files ---- Lists files and folders in your current working directory, open files, navigate your filesystem, and create new ---- files and folders ---- - Default keymaps: ---- - ``: opens the currently selected file, or navigates to the currently selected directory ---- - ``: creates new file in current directory, creates new directory if the name contains a trailing '/' ---- - Note: you can create files nested into several directories with ``, i.e. `lua/telescope/init.lua` would ---- create the file `init.lua` inside of `lua/telescope` and will create the necessary folders (similar to how ---- `mkdir -p` would work) if they do not already exist ----@deprecated Please move to https://github.com/nvim-telescope/telescope-file-browser.nvim ----@param opts table: options to pass to the picker ----@field cwd string: root dir to browse from (default: cwd, use utils.buffer_dir() to search relative to open buffer) ----@field depth number: file tree depth to display (default: 1) ----@field dir_icon string: change the icon for a directory. (default: ) ----@field hidden boolean: determines whether to show hidden files or not (default: false) -builtin.file_browser = require_on_exported_call("telescope.builtin.files").file_browser - --- Lists function names, variables, and other symbols from treesitter queries --- - Default keymaps: --- - ``: show autocompletion menu to prefilter your query by kind of ts node you want to see (i.e. `:var:`) -- cgit v1.2.3