Dmytro Meleshko

Results 32 comments of Dmytro Meleshko

@diegohaz Would you like to publish changes from #25 as the last release?

@Ryskulov Webpack 4 splits vendor chunks by default. Just add the following code to your config: ```js const { createConfig, customConfig, /* ... */ } = require('webpack-blocks'); module.exports = createConfig([...

By the way, about noclip: what do you think about including the WEdit-tech patch for every tech in the vanilla game? This will solve the problem of having to patch...

See enhanced-ui in crosscode-ru

Here's an implementation I came up with. Could this be integrated into the plugin? ```lua ---@param cb fun(cmp: blink.cmp.API) ---@return fun(cmp: blink.cmp.API): boolean local function wrap_scroll_page(cb) return function(cmp) if cmp.is_menu_visible()...

This source is not responsible for completing buffer names, rather, it completes words found inside the buffers. What you are getting in cmdline is actually coming from Vim itself, try...

Here's what I came up with: ```lua vim.api.nvim_create_autocmd('LspRequest', { callback = function(args) local data = args.data ---@type table local ignored_noisy_requests = { ['textDocument/documentHighlight'] = true, ['textDocument/semanticTokens/full'] = true, ['textDocument/semanticTokens/full/delta'] =...

I think this can be fixed by using the `$'...'` string literals (zsh expands the escape sequences in those to the actual control characters) for defining the LHS of your...

Hi, is it possible to apply this option to `try` blocks as well? E.g. currently overflowing try blocks are formatted as follows: ```rust handle_broken_pipe( try { serde_json::to_writer(&mut stdout, &out_msg)?; stdout.write_all(b"\n")?;...

Set `keyword_pattern` to `[[\k\+]]`.