From 951ff00b107d27f4b6092ae25511b9a79ab048fb Mon Sep 17 00:00:00 2001 From: Simon Barth Date: Wed, 15 Jul 2026 15:49:57 +0200 Subject: [PATCH] style(#3223): change prompt of create file to "Create " --- lua/nvim-tree/actions/fs/create-file.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvim-tree/actions/fs/create-file.lua b/lua/nvim-tree/actions/fs/create-file.lua index f8d7aad921c..d560db3fefd 100644 --- a/lua/nvim-tree/actions/fs/create-file.lua +++ b/lua/nvim-tree/actions/fs/create-file.lua @@ -49,7 +49,7 @@ function M.fn(node) local containing_folder = utils.path_add_trailing(dir.absolute_path) local input_opts = { - prompt = "Create file ", + prompt = "Create ", default = containing_folder, completion = "file", }