julia-vim icon indicating copy to clipboard operation
julia-vim copied to clipboard

Vim support for Julia.

Results 49 julia-vim issues
Sort by recently updated
recently updated
newest added

https://user-images.githubusercontent.com/75968004/161885592-caf8e1e4-22fd-48e9-aa50-212805bc6caf.mp4 Expectation: `a ≠ b` not `a≠ b`

The `ij` text object includes some of a function signature if it spans multiple lines: ![julia-vim-ij](https://user-images.githubusercontent.com/51063625/156664090-e79a6f99-aa6a-4774-90c6-6dc8e6dde9d6.gif) It doesn't select anything if the entire block is on one line, like this:...

Hi, While programming on Kitty terminal using Nvim and Julia-vim package, typing single/double dotted variables (standing for first/second time derivatives of the variable) render the unmodified chars. It works for...

Using the current `master` of `julia-vim` (no other plugins/configuration), I get the following indent behavior: ~~~julia problem = ControlProblem( X ~~~ where `X` marks the position of the cursor after...

Hi! If you want to follow [BlueStyle](https://github.com/invenia/BlueStyle), then the function declaration with a lot of arguments must be: ```julia function foobar( df::DataFrame, id::Symbol, variable::Symbol, value::AbstractString, prefix::AbstractString="", ) ``` If we...

Getting started trying out vim as a julia editing environment. I'm using it by sending code from vim to the REPL with vim-slime. However, there's something that is slightly annoying....

The patch below adds highlighting inside Julia documentation block. (first time editing a vim syntax file, so not sure if it's correct) ```patch diff --git a/syntax/julia.vim b/syntax/julia.vim index 9643792..044e41b 100644...

When I try to press tab key in some Julia file, I got this message in terminal `E15: Invalid expression: pumvisible() ? "\^N" : R73_check_back_space() ? "\^I" : coc#refresh()` ![image](https://user-images.githubusercontent.com/47508166/133711347-4ff70cbc-f30e-4085-801a-743ad657f519.png)...

Vim has support for writing compiler plugins: It would be nice to run tests and get the stacktrace populated in the quickfix list. I imagine this is not straightforward but...

In `ftdetect/julia.vim` there are some autocommands that call `LaTeXtoUnicode#Refresh()` for all filetypes, meaning that the files in `autoload/` are loaded every time at startup and then _every time_ a buffer...