conemu

Displaying unix color on windows cmd (e.g. ←[31m)

…衆ロ難τιáo~ 提交于 2020-01-31 08:51:32
问题 I've recently started doing some ruby on rails development on Windows 7 and have found a number of commands (rspec, guard, etc) output colour codes that just show up in text on the windows command line (or through Console2 which I use). eg: ←[31mrspec ./spec/views/users/index.html.erb_spec.rb:21←[0m ←[36m# users/index renders a list of users←[0m ←[31mrspec ./spec/requests/homes_spec.rb:9←[0m ←[36m# Homes GET /homes ←[0m ←[31mrspec ./spec/views/users/new.html.erb_spec.rb:13←[0m ←[36m# users

程序员常用工具备忘

让人想犯罪 __ 提交于 2020-01-06 23:05:00
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 程序员常用工具 最近发现电脑状态不好,硬盘空间、内存空间也有点不足预感到电脑中的小宇宙可能要崩塌,为了不让自己在新的系统准备开发环境时有那种开荒在不舒适感,和到处找软件的迷茫,我先备份个软件清单 通讯 微信(把他放在第一位感觉特别不应该,特别对不起自己) Foxmail 远程操作 TeamViewer 向日葵 xShell xFtp 数据库与数据库连接 数据库这要看生产环境了,个人电脑我一般不安装(除非迫不得已[微笑]) navcat,plsql redisdesktopmanager,anotherredisdesktopmanager(linux) SQLiteStudio 其他数据库不我个人用的不多,最多再有一个连接monogo的,官方的就可以 文件操作 nodepadd++ Beyond Compare (一般是生产环境的文件与开发环境的配置文件或脚本文件对比,一旦用到他就是莫名其妙的问题) vscode (我没有把他当做ide,多数情况用他写一些文本文件,配置文件,脚本,或者markdown,所以也很少安插件,只用了GitLens和Markdown Preview Enhanced,但是不得不说用他开发前端产品真得劲) Typora: markdown编辑器,个人觉得是最好的 everything:

ConEmu with Git Bash - Show folder in tab bar

谁说我不能喝 提交于 2020-01-05 04:18:10
问题 I'm usually running Git Bash in ConEmu tabs. It would be really handy to show the name of the current directory in the tab bar for each instance of Git Bash, but if I set the tab template to %d or %f , I always get my Windows home directory, no matter where I cd to in Git Bash. Is there a way to display the path in the tab bar? As you can see from the attached screenshot, I'm navigated to the banana folder, but ccook (my home dir) is shown in the tab. The Title ( %s ) seems to contain the

vim-powerline plugin in ConEmu

冷暖自知 提交于 2019-12-25 01:54:13
问题 I'm configuring the Vim and ConEmu to work on my Win8 as on my Fedora distro. After problems with getting to work the 256 colors in ConEmu for my color schema seoul256, now I have problems with the vim-powerline colors. In gvim there is no problem, only in the console. It looks that So how can I get it to work? 来源: https://stackoverflow.com/questions/23446550/vim-powerline-plugin-in-conemu

ConEmu commands in task

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-23 09:39:15
问题 I'm trying to get a Task in ConEmu to open several consoles, and for each run a batch-like script when opened. For example: Open a Git Bash, name the console "X", set the current directory to "Y". Open another Git Bash and run a set of commands, for example "cd A/B/C", "vagrant up" Open a regular command window, run the command "cd D/E/F", "grunt watch" I want the second and third consoles to appear alongside each other, but underneath the first console. So far I am stuck getting commands to

Customize VSCode to use a console emulator instead of the command prompt

和自甴很熟 提交于 2019-12-22 06:58:52
问题 Can I customize VSCode to use a console emulator instead of the command prompt? I want to use something like conemu, but don't want to use "force conemu as default terminal for console applications" setting in conemu. It has a specific warning "enabling this option may cause false alarms in antiviral programs", and I'm on my work computer. 回答1: They have just implemented this feature: https://github.com/Microsoft/vscode/pull/3495 You'll have the externalTerminal.windowsExec and

Customize VSCode to use a console emulator instead of the command prompt

痴心易碎 提交于 2019-12-22 06:58:18
问题 Can I customize VSCode to use a console emulator instead of the command prompt? I want to use something like conemu, but don't want to use "force conemu as default terminal for console applications" setting in conemu. It has a specific warning "enabling this option may cause false alarms in antiviral programs", and I'm on my work computer. 回答1: They have just implemented this feature: https://github.com/Microsoft/vscode/pull/3495 You'll have the externalTerminal.windowsExec and

How do I make conemu open bat files on double click?

▼魔方 西西 提交于 2019-12-20 10:30:01
问题 I have a home-server where I run a Development minecraft server, and have moved to conemu as a CMD replacement, Exept each time I want to start the server I need to CD to the DIR & run the start.bat. Is there a way I could create a shortcut to just double click to start the start.bat in conemu? 回答1: Command line for the shortcut: "C:\Program Files\Far Manager\ConEmu.exe" /cmd "\path\to\start.bat" Or you could associate opening any batch file with ConEmu by modifying Windows registry: Windows

Start up cmder ConEmu console in a specific folder

时间秒杀一切 提交于 2019-12-20 09:33:52
问题 I want start my Cmder console in this route C:\xampp\htdocs , but I don't understand the syntax of 'Task parameters'. For example: `/icon "%CMDER_ROOT%\cmder.exe`" Can anyone translate for this? C:\xampp\htdocs to -> /icon "%CMDER_ROOT%\cmder.exe " So I could edit the config and place my custom folder: Thank you very much. 回答1: Change %USERPROFILE% to desired folder instead. 回答2: Go to Setup and Click on 'Startup dir...' button and specify startup directory. As you can see in example bellow

Move ConEmu prompt to new line following path?

这一生的挚爱 提交于 2019-12-13 18:23:27
问题 ConEmu by default has a prompt which is like "${cwdfull}>" I'd like instead, "${cwdfull}\n> ". How do I customize this? I see it must be possible since cmdr which is based on ConEmu has it. Thanks in advance! 回答1: ConEmu by default conemu -basic -cmd {cmd} has following prompt You can easily check how it is created in Tasks and %ConEmuBaseDir%\CmdInit.cmd batch file. All "magic" is done by PROMPT variable. For example set PROMPT=$P$_$G . Update I really do not understand your question from