在source insight中加入TortoiseSVN的功能

简介:
我经常在写代码时要看一下修改记录,以前一般是在 文件 夹中找到这个文件然后查看修改记录,这种方法太麻烦了。后来在看TortoiseSVN的帮助文档时看到外部 程序 调用TortoiseSVN的方法。一直想在source insight中用快捷键
查看当前文件的修改日志,经过多次尝试找到方法:
在source insight菜单
Options->Custom Commands
点击Add, Command name设为svn log
Run设为
"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:log /path:%f /notempfile /closeonend
然后点Keys,选择刚添加的命令,按Assign New Key设定自己的快捷键,我的就设为 CTRL+L

这样就可以在source insight中用快捷键CTRL + L来显示当前文件的修改日志了。

其他的比如查看当前文件的修改也是类似的修改。
目录
相关文章
clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】
clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】
clion中cpp文件显示This file does not belong to any project ,code insight features might not work【解决方案】
|
Ubuntu Linux 数据安全/隐私保护
【Source Insight】工具入门到精通(下)
【Source Insight】工具入门到精通
|
开发框架 .NET Java
【Source Insight】工具入门到精通
【Source Insight】工具入门到精通
|
Java 数据库 C++
source insight 4.0使用
source insight 4.0使用
245 0
source insight 4.0使用
|
开发工具 Docker 容器
如何用source insight写内核代码
别的文章都会做很多说明, 铺垫, 我就不多说了, 直接来重点 vim写代码的时候, 有一种情况不是很好处理, 比如 struct a{int x; int y; iny z} struct b{int x; int y; iny z} pb->z想从这里跳到到结构体b的定义需要编辑器理解pb的含义, 而不是简单的字符查找 那就让我们来用source insight吧 以
1579 0