http://www.latex-community.org/forum/viewtopic.php?f=45&t=9323
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://stackoverflow.com/questions/5029118/bash-ctrl-to-move-cursor-between-words-strings | |
# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving | |
"\e[1;5C": forward-word | |
"\e[1;5D": backward-word | |
"\e[5C": forward-word | |
"\e[5D": backward-word | |
"\e\e[C": forward-word | |
"\e\e[D": backward-word |
- clone to
~/git_bashrc
- find out
git-prompt.sh
andgit-completion.bash
and addsource
line ingit_bashrc/bashrc
$ echo "source ~/git_bashrc/bashrc" > ~/.bashrc
user@localhost:~/git_bashrc (master *) $
<-- green --><-- blue --> <-- white-->
tlmgr install [Package]
where [Package]
found in http://www.ctan.org/ or its mirror sites.
recently cannot use the command above but great hint found! http://tex.stackexchange.com/questions/313768/tlmgr-unknown-directive
saying get update-tlmgr-latest.sh
from https://www.tug.org/texlive/tlmgr.html then run as root
# sh update-tlmgr-latest.sh
hints from https://texwiki.texjp.org/?LaTeX%E5%85%A5%E9%96%80%2F%E5%90%84%E7%A8%AE%E3%83%91%E3%83%83%E3%82%B1%E3%83%BC%E3%82%B8%E3%81%AE%E5%88%A9%E7%94%A8
kpsewhich style.sty
to find out where the package is installed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## from http://www.hanselman.com/blog/TowardsABetterConsolePSReadLineForPowerShellCommandLineEditing.aspx | |
(new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex | |
install-module PsReadLine | |
$ps = ${env:USERPROFILE}+"/Documents/WindowsPowerShell" | |
if (-Not (Test-Path $ps)) { | |
mkdir $ps | |
} | |
$p = ${env:USERPROFILE}+"\git_profile\profile.ps1" | |
$file= "if (Test-Path $p) | |
{ |
THIS MIGHT NOT WORK ON SOME MICROCONTROLLERS
-
ARMCC has binary converter "fromelf" command like "objcopy" command in GCC
-
some Cortex-M microcontroller vendor requires binary file, instead of ihex forat, for their binary downloader
-
tested with Keil uVision5 free(32kB) version:
- open ""Options for Target"" window
- [User] Tab
- [Run User Programs After Build/Rebuild] section
- [User] Tab
- open ""Options for Target"" window
-
check [Run #1] marked and input :
NewerOlder