摘要:
这个报错信息非常明确: Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by plugin 'dev.flutter.flu 阅读全文
摘要:
在 Vim 的正则表达式中,预查(Lookaround) 是一种“断言”,用于匹配某个位置前后是否满足特定条件,但不消耗字符(即匹配结果中不包含预查括号内的内容)。 Vim 支持四种预查,分为正向/负向和向前/向后两个维度。以下是关键关键字和语法: 1. 核心语法关键字 类型 中文名称 英文术语 V 阅读全文
摘要:
组权限 sudo usermod -a -G docker ide 添加docker组权限给ide用户 root编辑权限 在 Vim 中,你可以使用 :w !sudo tee % 命令来保存文件。这个命令的工作原理是: :w 是 Vim 的写入命令。 ! 允许你执行外部命令。 sudo tee % 阅读全文