kiryph
kiryph
I'd like to have omni-completion for references in a latex document. Vimtex provides results via an omnifunc (https://github.com/lervag/vimtex/blob/master/doc/vimtex.txt#L1487). I have added following pattern to my vimrc based on https://github.com/lervag/vimtex/issues/453#issuecomment-228575751: ```...
I was considering to create a pull request for the formatter [`latexindent`](https://github.com/cmhughes/latexindent.pl) for tex files to adjust the `defaultIndent` setting according to the current return value of `shiftwidth()` if `'expandtab'`...
I am writing a LaTeX manuscript and try out different tools for formatting: - [latexindent.pl](https://github.com/cmhughes/latexindent.pl) - [vim-bucky](https://github.com/dbmrq/vim-bucky/blob/master/ftplugin/tex.vim) (`:setlocal formatexpr=bucky#tex#format()`) - [vimtex](https://github.com/lervag/vimtex/blob/master/autoload/vimtex/format.vim) (`:setlocal formatexpr=vimtex#format#formatexpr()`) I would like to switch conveniently between...
As noted in [CHANGES.md](https://github.com/gap-system/gap/blob/master/CHANGES.md) for gap-4.11.1: > ### Other fixed bugs > - #3963 Provide automatic compression/decompression of filenames ending `.gz` (as is claimed for example in the documentation of...
Most plugins show keyboard shortcuts in the menu `Packages->Plugin Name->Feature Name + Corresponding Shortcut`. What it be possible to add this to `Packages->Merge Conflicts->Detect Alt+m d`?
original .tex code -- from the documentation of [tabularray](https://ctan.org/pkg/tabularray): Section 2.4.1 Cells and Spancells in New Interfaces, page 18. ```tex \documentclass{article} \usepackage{tabularray} \begin{document} \begin{tblr}{ hlines = {white}, vlines = {white},...
I am using MacVim on OSX 10.10.5 and I have installed miniconda to `$HOME/miniconda-py2`. I also have adjusted `$PATH` so that ``` ❯ which -a python /Users/kiryph/miniconda-py2/bin/python /usr/bin/python ``` I...
I think the situation that you want to use `:EasyAlign` only on the current line are quite rare and can be still done by `:.EasyAlign`. An advanced behavior has been...
I would like to keep seeing the scrollbar from https://github.com/dstein64/nvim-scrollview. Is this possible?
I have in my `init.lua` ```lua vim.o.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]] ``` zen-mode.nvim overwrites this. How can I keep my setting active in `:ZenMode`?