managed to get emacs segfaulting, very fun
Timeline
Post
Remote status
@kaia@brot.eus @toast@donotsta.re @hfaust@shitposter.world it does have more fuctionality. eg you can add some code to integrate with clipboard and copy selection to system clipboard. theoretically possible in vimscript but never worked for me when trying to copy selection made in visual mode
Replies
1@brettm @kaia @hfaust for neovim:
vim.g.clipboard = {name = "OSC52", copy = {["+"] = require("vim.ui.clipboard.osc52").copy("+"), ["*"] = require("vim.ui.clipboard.osc52").copy("*")}, paste = {["+"] = require("vim.ui.clipboard.osc52").paste("+"), ["*"] = require("vim.ui.clipboard.osc52").paste("*")}}
unformatted because itβs compiled from https://github.com/CosmicToast/dotfiles/blob/main/dot_config/nvim/pre.fnl#L34