about summary refs log blame commit diff stats
path: root/arc/.traces/string-find-next-empty
blob: b314a904d3d6f2caab328ef4796977576b351ef8 (plain) (tree)






















































                                                                                                    
c{0: 0 (((1 string-address)) <- ((new)) ) -- nil
c{0: 1 (((2 integer)) <- ((find-next)) ((1 string-address)) ((/ literal)) ((0 literal))) -- nil
c{1: 0 ✓ (((1 string-address)) <- ((new)) )
c{1: 1 ✓ (((2 integer)) <- ((find-next)) ((1 string-address)) ((/ literal)) ((0 literal)))
cn0: convert-names in main
cn0: (((1 string-address)) <- ((new)) ) nil nil
cn0: checking arg 
cn0: checking oarg ((1 string-address))
maybe-add: ((1 string-address))
cn0: (((2 integer)) <- ((find-next)) ((1 string-address)) ((/ literal)) ((0 literal))) nil nil
cn0: checking arg ((1 string-address))
maybe-add: ((1 string-address))
cn0: checking arg ((/ literal))
cn0: checking arg ((0 literal))
cn0: checking oarg ((2 integer))
maybe-add: ((2 integer))
cn1: (((1 string-address)) <- ((new)) )
cn1: (((2 integer)) <- ((find-next)) ((1 string-address)) ((/ literal)) ((0 literal)))
schedule: main
run: main 0: (((1 string-address)) <- ((new)) )
run: main 0: 1000 => ((1 string-address))
mem: ((1 string-address)): 1 <= 1000
run: main 1: (((2 integer)) <- ((find-next)) ((1 string-address)) ((/ literal)) ((0 literal)))
mem: ((1 string-address)) => 1000
run: find-next/main 0: (((default-space space-address)) <- ((new)) ((space literal)) ((30 literal)))
run: find-next/main 0: 1001 => ((default-space space-address))
run: find-next/main 1: (((1 string-address)) <- ((next-input)))
arg: nil 0 (1000 #\/ 0)
run: find-next/main 1: 1000 => ((1 string-address))
mem: ((1 string-address)): 1003 <= 1000
run: find-next/main 2: (((2 character)) <- ((next-input)))
arg: nil 1 (1000 #\/ 0)
run: find-next/main 2: #\/ => ((2 character))
mem: ((2 character)): 1004 <= #\/
run: find-next/main 3: (((3 integer)) <- ((next-input)))
arg: nil 2 (1000 #\/ 0)
run: find-next/main 3: 0 => ((3 integer))
mem: ((3 integer)): 1005 <= 0
run: find-next/main 4: (((4 integer)) <- ((length)) ((1 string-address) (deref)))
array-len: ((1 string-address) (deref))
mem: ((1000 integer) (raw)) => 0
run: find-next/main 4: 0 => ((4 integer))
mem: ((4 integer)): 1006 <= 0
run: find-next/main 5: (((5 boolean)) <- ((greater-or-equal)) ((3 integer)) ((4 integer)))
mem: ((3 integer)) => 0
mem: ((4 integer)) => 0
run: find-next/main 5: t => ((5 boolean))
mem: ((5 boolean)): 1007 <= t
run: find-next/main 6: (((jump-if)) ((5 boolean)) ((5 offset)))
mem: ((5 boolean)) => t
run: find-next/main 12: (((reply)) ((3 integer)))
mem: ((3 integer)) => 0
run: main 1: 0 => ((2 integer))
mem: ((2 integer)): 2 <= 0
schedule: done with routine nil
>> <meta charset='utf-8'> <title> Vim</title> </head> <body> <a href="index.html">Systools Index</a> <h1 id="vim"> Vim</h1> <p>&lt;leader&gt; with default configuration is key \, so when you see &lt;leader&gt;-W means pressing \W</p> <h2 id="vimrc">1. Vim RC</h2> <p>Read <a href="http://dougblack.io/words/a-good-vimrc.htm">"A good vimrc"</a> for more information.</p> <dl> <dt>/usr/share/vim/vimrc</dt> <dd>System wide Vim initializations.</dd> <dt>~/.vimrc</dt> <dd>Your personal Vim initializations.</dd> </dl> <p>Copy vimrc skeleton example, so that each user have a base to start personalizing it;</p> <pre> $ sudo cp ~/sysdoc/conf/etc/skel/.vimrc /etc/skel/ $ sudo mkdir /etc/skel/.vim $ sudo mkdir /etc/skel/.vim/swap $ sudo mkdir /etc/skel/.vim/views $ sudo mkdir /etc/skel/.vim/undodir $ sudo mkdir /etc/skel/.vim/backup $ wget -O wombat2mod.vim http://www.vim.org/scripts/download_script.php?src_id=40 $ mv wombat2mod.vim /usr/share/vim/colors/ </pre> <h2 id="color">2. Color schemes</h2> <p>Default vimrc skeleton is configured to use wombat2mod, which is installed by adduser skeleton.</p> <h2 id="spacetab">3. Split and tab</h2> <p>Horizontal split;</p> <pre> :sp </pre> <p>Vertical split;</p> <pre> :vsp </pre> <p>Change horizontal to vertical</p> <pre> ctrl+w H </pre> <p>Change vertical to horizontal</p> <pre> ctrl+w J </pre> <p>Move between window splits;</p> <pre> ctrl+w (k,j,l,h) </pre> <h2 id="edit">4. Editing files</h2> <p>Come from background;</p> <pre> $ fg </pre> <h3>Moving in vim</h3> <p>Moving page up and page down;</p> <dl> <dt>[Control][b]</dt> <dd>Move back one full screen</dd> <dt>[Control][f]</dt> <dd>Move forward one full screen</dd> <dt>[Control][d]</dt> <dd>Move forward 1/2 screen</dd> <dt>[Control][u]</dt> <dd>Move back (up) 1/2 screen</dd> </dl> <h3>How to use vim</h3> <p>In vim you can apply predefined number of times to a operator, selection or object. For example to delete the next two words press: d + 2 + w. List of important operators objects, selections;</p> <pre> operator + count + object </pre> <p>Operator;</p> <dl> <dt>d</dt> <dd>Delete</dd> <dt>c</dt> <dd>Change (d + i)</dd> <dt>y</dt> <dd>Copy</dd> <dt>v</dt> <dd>Visual Select</dd> </dl> <p>Objects;</p> <dl> <dt>w</dt> <dd>Word</dd> <dt>s</dt> <dd>Sentences</dd> <dt>p</dt> <dd>Paragraphs</dd> <dt>t</dt> <dd>Tags</dd> </dl> <p>Selections are like objects, for example d + i + w will delete "inner" word, c + a + w do the same plus the space;</p> <dl> <dt>a</dt> <dd>All</dd> <dt>i</dt> <dd>in</dd> <dt>t</dt> <dd>Until</dd> <dt>f</dt> <dd>Find forward</dd> <dt>F</dt> <dd>Find backward</dd> </dl> <p>Selection of useful combinations;</p> <dl> <dt>vat</dt> <dd>Select whole tag block.</dd> <dt>cit</dt> <dd>Change inside tag.</dd> <dt>yat</dt> <dd>Copy whole tag.</dd> <dt>vip<C-V>$A,<Esc></dt> <dd>Select a paragraph (vip), switch to visual block mode (CTRL V), append to all lines ($A) a comma (,), press esc to confirm.</dd> <dt>vip&lt;C-V&gt;I,&lt;Esc&gt;</dt> <dd>Select a paragraph (vip), switch to visual block mode (CTRL V), insert to all lines (I) a comma (,), press esc to confirm.</dd> </dl> <h2 id="spellcheck"> Spell check</h2> <p>Press z= over the bad written word and select desired one.</p> <h2 id="plugin">6. Plugins</h2> <a href="index.html">Systools Index</a> <p>This is part of the c9-doc Manual. Copyright (C) 2016 c9 team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html>