MasseR


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

About Me

No description provided.

Classes

Learning Vim from the inside

Class status: Established
Role: Student
. 35% complete

Submitted Assignments

Learning Vim from the inside: Lesson 3, HW 2

I tried using the id-utils utility to find the file, which I did but the lid output was confusing so I confirmed my results with grep.

masse@libre(remote):git/vim $ lid mailing
mailing        README.txt runtime/doc/{intro,os_vms,pi_netrw,uganda}.txt runtime/tools/{efm_filter,mve}.txt
masse@libre(remote):git/vim $ vim README.txt
masse@libre(remote):git/vim $ grep mailing *
Binary file ID matches
README.txt:There are five mailing lists for Vim:

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

Configuring and compiling went without a hitch. I did do a few things different though, and enabled GUI, cscope and python interpreter.

./configure --enable-gui=auto --enable-cscope --enable-pythoninterp --enable-fontset
make -j2
make test

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

It took a little while to get this assignment done as the id-utils package wasn't in the main Arch Linux repositories, and it was named as 'idutils' instead of 'id-utils'.

After installing the id-utils package, I found the official GNU manual which explained the syntax and operations without using the 'man' utilities.


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

I installed mercurial through the Arch Linux repository by using the yaourt package manager wrapper. After doing that, downloading the vim repository was just a simple hg clone away.

Didn't require any tricky operations.


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

Downloaded vim source to my version control directory

cd git
hg clone https://vim.googlecode.com/hg/ vim

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

Installed Mercurial through package manager.

yaourt -S mercurial

MasseR 2 years ago