slides.vim

Des slides dans votre vim - retour accueil

git clone git://bebou.netlib.re/slides.vim
Log | Files | Refs |

emphasize.slides (655B)


      1  › first
      2 
      3   to emphasize something, just use non breaking spaces
      4   (<alt-space>) around it.
      5 
      6   be sure there is no nbsp entry for listchars.
      7   the easiest way to do it is
      8 
      9     :set list!
     10 
     11 › did you spot the 1 ?
     12 
     13     000 0 0 0 0 0
     14     000 0 0 0 0 0
     15     000 0 1 0 0 0
     16     000 0 0 0 0 0
     17     000 0 0 0 0 0
     18     000 0 0 0 0 0
     19 
     20 › did you spot the 1 ?
     21 
     22     000 0 0 0 0 0
     23     000 0 0 0 0 0
     24     000 0  1  0 0 0
     25     000 0 0 0 0 0
     26     000 0 0 0 0 0
     27     000 0 0 0 0 0
     28 
     29 › perl Function::Parameters
     30 
     31     sub hello {
     32         my $who = @_ ? shift : "world"; 
     33        say "hello $who";
     34     }
     35 
     36     fun hello ( $who = 'world' ) {
     37         say "hello $who";
     38     }