Closed mrbeardad closed 10 months ago
NVIM v0.10.0-dev-1911+g104565909 Build type: RelWithDebInfo LuaJIT 2.1.1702233742
Windows 11
cd nvim
nvim
:Telescope egrepify
lazy.nvim
init.lua
fileformat=dos
No ^M at the end of lines. Maybe it's due to LF or CRLF
^M
All the results with end with ^M
local plugins_path = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(plugins_path) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", plugins_path, }) end vim.opt.rtp:prepend(plugins_path) require("lazy").setup({ { "nvim-telescope/telescope.nvim", dependencies = { "nvim-lua/plenary.nvim", "nvim-tree/nvim-web-devicons", }, opts = {}, }, { "fdschmidt93/telescope-egrepify.nvim", keys = { { "<Space>/", "<Cmd>Telescope egrepify<CR>", desc = "Search Text" }, }, config = function() require("telescope").load_extension("egrepify") end, }, })
Description
Neovim version
Operating system and version
Windows 11
Steps to reproduce
cd nvim
nvim
:Telescope egrepify
lazy.nvim
init.lua
following, andfileformat=dos
Expected behavior
No
^M
at the end of lines. Maybe it's due to LF or CRLFActual behavior
All the results with end with
^M
Minimal config