Changeset 13344
- Timestamp:
- 09/12/12 16:41:23 (13 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/boost
- Property svn:ignore
-
old new 1 *.gz 1 2 install 2 3 src
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/freetype
- Property svn:ignore
-
old new 1 *.gz 1 2 install 2 3 src
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/latex2rtf
- Property svn:ignore
-
old new 1 *.gz 2 install 1 3 cfg 2 4 latex2rtf-2.0.0
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/libpng
- Property svn:ignore
-
old new 1 *.gz 1 2 src 2 3 install
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/metis
- Property svn:ignore
-
old new 1 *.gz 1 2 install 2 3 src
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/pyclips
- Property svn:ignore
-
old new 1 *.gz 1 2 install
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/python
- Property svn:ignore
-
old new 1 *.txt 1 2 install-* 2 3 install
-
- Property svn:ignore
-
issm/trunk-jpl/externalpackages/scipy/install-macosx-lion.sh
r13264 r13344 11 11 #install scipy 12 12 cd scipy 13 export BLAS_SRC=$ISSM_DIR/externalpackages/blas/install/lib 14 export BLAS=$ISSM_DIR/externalpackages/blas/install/lib 15 export LAPACK_SRC=$ISSM_DIR/externalpackages/lapack/install/lib 16 export LAPACK=$ISSM_DIR/externalpackages/lapack/install/lib 17 18 #install scipy 13 19 python setup.py build 14 20 python setup.py install -
issm/trunk-jpl/externalpackages/vim/addons/vimrc
r12954 r13344 99 99 map <F8> :w <Enter> :make <Enter><Enter> 100 100 map! <F8> <ESC> :w <Enter> :make <Enter><Enter> 101 " make update: nice for longer documents 102 map <F7> :w <Enter> :make update <Enter><Enter> 103 map! <F7> <ESC> :w <Enter> :make update <Enter><Enter> 104 101 105 102 106 "use paste P: re-indent and re-format at the same time … … 190 194 " Abbreviations {{{1 191 195 " ---------------------------------------------------------------------- 192 func Eatchar(pat) 193 let c = nr2char(getchar()) 194 return (c =~ a:pat) ? '' : c 195 endfunc 196 au BufRead,BufNewFile *.html iabbr <silent> H1 <h1></h1><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 197 au BufRead,BufNewFile *.html iabbr <silent> H2 <h2></h2><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 198 au BufRead,BufNewFile *.html iabbr <silent> H3 <h3></h3><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 199 au BufRead,BufNewFile *.html iabbr <silent> CO <code></code><Left><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 200 au BufRead,BufNewFile *.html iabbr <silent> PP <p></p><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 201 au BufRead,BufNewFile *.m iabbr <silent> p1 disp('');<Left><Left><Left><C-R>=Eatchar('\s')<CR> 202 au BufRead,BufNewFile *.m iab <expr> p0 "disp('-------------- file: ".expand('%')." line: ".line(".")."');" 203 au BufRead,BufNewFile *.c* iabbr <silent> p1 printf("\n");<Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 204 au BufRead,BufNewFile *.c*,*.h iabbr <silent> ER _error_("");<Left><Left><Left><C-R>=Eatchar('\s')<CR> 205 au BufRead,BufNewFile *.py iabbr <silent> ER raise NameError('')<Left><Left><C-R>=Eatchar('\s')<CR> 206 au BufRead,BufNewFile *.m iabbr <silent> ER error('');<Left><Left><Left><C-R>=Eatchar('\s')<CR> 207 au BufRead,BufNewFile *.c* ab VV VecView(ug,PETSC_VIEWER_STDOUT_WORLD); 208 au BufRead,BufNewFile *.c* ab AS _assert_(); 209 au BufRead,BufNewFile *.c* iab <expr> p0 "printf(\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);" 210 au BufRead,BufNewFile *.c* iab <expr> pp0 "PetscSynchronizedPrintf(MPI_COMM_WORLD,\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);\nPetscSynchronizedFlush(MPI_COMM_WORLD);" 211 "tex 212 au BufRead,BufNewFile *.tex iab EQ 213 \\begin{equation} 214 \<CR>\end{equation}<up><C-R>=Eatchar('\s')<CR> 215 au BufRead,BufNewFile *.tex iab IT 216 \\begin{itemize} 217 \<CR>\item 218 \<CR>\end{itemize}<up><C-R>=Eatchar('\s')<CR> 219 au BufRead,BufNewFile *.tex iab EN 220 \\begin{enumerate} 221 \<CR>\item 222 \<CR>\end{enumerate}<up><C-R>=Eatchar('\s')<CR> 223 au BufRead,BufNewFile *.tex ab (()) \left( \right) 196 "func Eatchar(pat) 197 " let c = nr2char(getchar()) 198 " return (c =~ a:pat) ? '' : c 199 "endfunc 200 "au BufRead,BufNewFile *.html iabbr <silent> H1 <h1></h1><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 201 "au BufRead,BufNewFile *.html iabbr <silent> H2 <h2></h2><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 202 "au BufRead,BufNewFile *.html iabbr <silent> H3 <h3></h3><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 203 "au BufRead,BufNewFile *.html iabbr <silent> CO <code></code><Left><Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 204 "au BufRead,BufNewFile *.html iabbr <silent> PP <p></p><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 205 "au BufRead,BufNewFile *.m iabbr <silent> p1 disp('');<Left><Left><Left><C-R>=Eatchar('\s')<CR> 206 "au BufRead,BufNewFile *.m iab <expr> p0 "disp('-------------- file: ".expand('%')." line: ".line(".")."');" 207 "au BufRead,BufNewFile *.c* iabbr <silent> p1 printf("\n");<Left><Left><Left><Left><Left><C-R>=Eatchar('\s')<CR> 208 "au BufRead,BufNewFile *.c*,*.h iabbr <silent> ER _error_("");<Left><Left><Left><C-R>=Eatchar('\s')<CR> 209 "au BufRead,BufNewFile *.c* ab VV VecView(ug,PETSC_VIEWER_STDOUT_WORLD); 210 "au BufRead,BufNewFile *.c* ab AS _assert_(); 211 "au BufRead,BufNewFile *.c* iab <expr> p0 "printf(\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);" 212 "au BufRead,BufNewFile *.c* iab <expr> pp0 "PetscSynchronizedPrintf(MPI_COMM_WORLD,\"-------------- file: ".expand('%')." line: %i\\n\",__LINE__);\nPetscSynchronizedFlush(MPI_COMM_WORLD);" 213 ""tex 214 "au BufRead,BufNewFile *.tex iab EQ 215 " \\begin{equation} 216 " \<CR>\end{equation}<up><C-R>=Eatchar('\s')<CR> 217 "au BufRead,BufNewFile *.tex iab IT 218 " \\begin{itemize} 219 " \<CR>\item 220 " \<CR>\end{itemize}<up><C-R>=Eatchar('\s')<CR> 221 "au BufRead,BufNewFile *.tex iab EN 222 " \\begin{enumerate} 223 " \<CR>\item 224 " \<CR>\end{enumerate}<up><C-R>=Eatchar('\s')<CR> 225 "au BufRead,BufNewFile *.tex ab (()) \left( \right) 224 226 "}}} 225 227 " Skeletons {{{1 226 228 au BufNewFile letter.tex 0r ~/.vim/xtr/skeleton/letter.tex 227 229 "}}} 230 " Copy and Paste{{{ 231 "vmap <C-c> y:call system("pbcopy", getreg("\""))<CR> 232 "nmap <C-v> :call setreg("\"",system("pbpaste"))<CR>p 233 "}}}
Note:
See TracChangeset
for help on using the changeset viewer.