Thiago Marques
Thiago Marques
I'm a bit concerned about the font ligature breaking with the question mark between the "|>" characters 
For Linux users, in Fedora and Ubuntu is possible to drag by clicking in anywhere of the window while holding the `Super` key.
> > For Linux users, in Fedora and Ubuntu is possible to drag by clicking in anywhere of the window while holding the `Super` key. > > it works on...
``` Waiting... print 0 hello 0.0035471916 0 Waiting... Waiting... Waiting... sleep 0 0.3127281666 0 Completed 2 tasks! ``` ```Ubuntu 22.04.1 LTS``` ```zsh 5.8.1``` ```spaceship 4.12.0```
Considering tables with large data, it would be good to limit the query to the first 1000 rows as well. Besides it, if it list all columns names instead of...
Do you mean something like this? ``` lua local function get_visual_selection() vim.cmd('normal! "vy') -- Yank selection into the unnamed register return vim.fn.getreg("v") end keys = { { "fw", function() require("telescope.builtin").live_grep({...
Did you try my suggestion up above? If you prefer you can remove the option `initial_mode = "normal"` to keep the default `insert_mode` behavior. 
`` > **WORD** > A WORD consists of a sequence of non-blank characters, separated with white space. An empty line is also considered to be a WORD. > **word** >...
Sorry, I misunderstood. Now I see: ``` lua default_text = "\\b" .. vim.fn.expand("") .. "\\b" ```