Šimon Mandlík

Results 76 issues of Šimon Mandlík

Improve the docs with examples of how to handle post-creation of `schema`s and `extractor`s using functionality from `Accessors.jl` and `HierarchicalUtils.jl`. Bonus: Improve [`Mill.jl`](https://github.com/CTUAvastLab/Mill.jl) docs as well. Context: https://github.com/CTUAvastLab/JsonGrinder.jl/issues/98

enhancement

Implement a new `Extractor` subtype, called `WordEmbeddingExtractor`, for extracting NLP words using their embeddings (using [`Embeddings.jl`](https://github.com/JuliaText/Embeddings.jl) and [`WordTokenizers.jl`](https://github.com/JuliaText/WordTokenizers.jl)?) Rough sketch of possible implementation can be found [here](https://github.com/CTUAvastLab/JsonGrinder.jl/issues/114), but this is...

enhancement

[`ScalarExtractor`](https://github.com/CTUAvastLab/JsonGrinder.jl/blob/master/src/extractors/scalar.jl) currently performs min-max normalization, which is very sensitive to outliers: ```julia julia> sch = schema([1:5..., 10^9]) LeafEntry storing 6 unique `Real` values: 5 => 1 4 => 1 2...

enhancement

Currently, `zindex` applies only to the scrollbar "body", not to the marks displayed on it: This means that any potential text is hidden. This is especially bad when using `textwidth`...

enhancement

### Description Whenever I'm - loading gitsigns before a colorscheme, - or trying out different colorscheme interactively (after loading gitsigns) that newly defines e.g. `GitGutterAdd` highlight group, highlight groups are...

bug

I'm using `sitiom/nvim-numbertoggle` to switch between relative and absolute line numbers automatically. In command line, it makes more sense to display the absolute numbers, so this plugins defines an autocommand...

enhancement

Hi, thanks for the amazing plugin! I couldn't find a way to change file status "icons" (`M`, `D`, `?`, ...). Would it be possible to add configuration for this?

Hi, the same optics I'm using for modification ```julia ❯ using Accessors, AccessorsExtra ❯ x = Dict( "a" => ( (1), (2), (3) ) ) Dict{String, Tuple{Int64, Int64, Int64}} with...

Thanks for the great plugin! It would be great to have a "toggle" action exposed e.g. for mappings.

Currently in file history `fold_open` and `fold_closed` characters use `CursorLineNr`: https://github.com/sindrets/diffview.nvim/blob/4516612fe98ff56ae0415a259ff6361a89419b0a/lua/diffview/scene/views/file_history/render.lua#L88 I am using signcolumn with background so I want `CursorLineNr` to have some background but not in diffview file...