symbols


Joined 2 years ago
Homeworks submitted:
Homework comments:
6
2

About Me

No description provided.

Classes

Computational Geometry

Class status: Under Construction
Role: Creator
. 0% complete

Learning Vim from the inside

Class status: Established
Role: Student
. 35% complete

Submitted Assignments

Learning Vim from the inside: Lesson 3, HW 2

looking in the obvious place worked, but useful incantations for similar tasks (though rather noisy on the VIM source) shown below

# search for things of the form <foobar@atleast.twopieces>
# ignoring binary files, recursively
grep -IRn "<.\+@.\+\..\+>" *
# same as above, but show only files that match
# the extra option is a lowercase L
grep -IRn -l "<.\+@.\+\..\+>" *
# OUCH! that's still noisy, people like to put emails in source files
# lets just look in the root
grep -In "<.\+@.\+\..\+>" *

symbols 2 years ago
Learning Vim from the inside: Lesson 3, HW 1

needed a few extra libs

sudo apt-get install ncurses-dev # needed for me on ubuntu 9.10
sudo apt-get install libgtk2.0-dev # only if you have space & time

symbols 2 years ago
Learning Vim from the inside: Lesson 2, HW 1

I found the info command useful to get a better understanding. I'm on Ubuntu 9.10

info 'ID database' # good info
cd vim # same dir cloned from googlecode
mkid # makes a file 'ID' in this directory
fnid *.c # shows c files
fid src/if_python.c # shows identifiers in the C file
lid python_buffer_free # shows files with python_buffer_free in them

symbols 2 years ago
Learning Vim from the inside: Lesson 1, HW 1

sudo apt-get install mercurial id-utils


symbols 2 years ago