MoreRSS

site iconxiantang | 咸糖修改

目前在新加坡工作,同时比较喜欢开源和投资。
请复制 RSS 到你的阅读器,或快速订阅到 :

Inoreader Feedly Follow Feedbin Local Reader

xiantang | 咸糖的 RSS 预览

2024 年终总结

2024-12-01 15:31:25

今天是 2024 即将收尾的最后一个月,我看到很多平台都有在发年度的 recap,像 reddit 啥的,我也想写一篇年度总结,记录一下这一年发生的事情。 2024 年终总结 一

Neovim: No Crash Incremental Selection

2024-07-11 23:16:09

When I use neovim treesitter incremental selection, it randomly crashes, but I cannot stable reproduce it. And I found some issues and complaints about this issue, but no solution. So I decide to write a blog post to record this issue and the solution. related issues: https://www.reddit.com/r/neovim/comments/10wwkft/comment/j7qla2q/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button https://github.com/neovim/neovim/issues/24336 https://github.com/neovim/neovim/issues/25254 https://www.reddit.com/r/neovim/comments/18dn4qt/treesitter_incremental_selection/ TL;DR paste this https://github.com/xiantang/nvim-conf/blob/7c0d6cbf6d9fd7b6a8960de887db1109332419bf/lua/plugins/treesitter.lua#L62-L132 into your neovim configuration file. this is my treesitter incremental selection configuration: 1 2 3 4 5 6 7 8 9 incremental_selection = { enable = true, keymaps = { init_selection = true, node_incremental = "v", node_decremental = "<BS>", }, }, sometime when I use v to expand the selection, it crashes, and it’s a Segmentation fault, and I have the report:

2022 年终总结

2023-01-01 16:30:40

今天是 2023 年的第一天,我想写一篇年终总结,回顾一下 2022 年的一些事情。 同时也是一个自我的回顾。 2022 年终总结 2022 年是一个不大顺利的一年, 似乎因为经济下行

使用 neovim 作为 PDE(个性化开发环境)

2022-10-29 20:45:20

本文不会告诉你如何一步一步地配置 neovim,而是告诉你一些关于 PDE 的 “道”, 不是具体实践的 “术&rdqu

shell 是一个不错的生产力工具

2022-09-12 14:34:53

连续三个命令的序列,重复执行了第二次,那么就建议你将它写成一个 Shell 脚本 – blog.fleeto.us 最近越来越发觉 shell 是一门可以代替 python 作为 devops 的工程师的第二门语言. 因为日常

使用二八法则省力地学习 awk

2022-06-29 22:14:09

篇幅只占20%、然而有效性却达到80% -二八法则 本文你能学到什么? 在本文中,我们将学习到如何使用二八法则来省力轻松学习 linux 文本处理命令 awk。