Sergio A. Vargas

Results 31 issues of Sergio A. Vargas

iterm2 stores colors using apple's `plist` format (xml pretending to be json). Melange should either have a template to generate the plist automatically (as is done with other terminal emulators)...

help wanted
terminal

A lot of issues with Paq right now stem from the fact that it doesn't have any kind of persistent state. All information is either in the user's configuration or...

enhancement

This PR replaces Distributed with [Malt.jl](https://github.com/JuliaPluto/Malt.jl) to add support for Distributed itself. See #300 - Remove `workspace_use_distributed` flag. Pluto will now always use separate processes. - Replace calls to `remotecall_eval`...

**Describe the bug** The indent module fails to identify the second branch of an error handling block in Julia. If both `catch` and `finally` appear consecutively, whichever appear second won't...

bug
indent

Conjure currently uses global variables for user-defined mappings, which is a bit unconventional. Vim already provides a mechanism for this. See `:h ` and `:h 41.11` (`/MAPPING`). Using `` is...

enhancement

Ok, this is either dumb or genious, but bear with me. Right now, `:Lushify` uses regexes to highlight `hsl` calls and group names. That's all well and good, except it...

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...

Hi, I've been using `tab` for a good while now, and I find it really useful. Recently however, I realised I haven't really been using the workspaces feature at all,...

documentation
enhancement
comments wanted

Mocha.jl has been deprecated since december 2018. The code base doesn't use Julia ≥ 1.0, so it has outdated syntax that is marked as an error by the parser. I...

The grammar.js currently defines the `try_statement` with an optional `catch`, and then an optional `finally`, like so: ``` try_statement: $ => seq( 'try', optional($._expression_list), optional($.catch_clause), optional($.finally_clause), 'end' ), ``` However,...