From c3d2ca0e02a4039a993c60c2c0a6dbfbf573520b Mon Sep 17 00:00:00 2001 From: ZeLibertineGamer Date: Sun, 13 Nov 2016 22:47:45 -0800 Subject: Disable list by default --- vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 65dc4c1..34b95e8 100644 --- a/vimrc +++ b/vimrc @@ -43,7 +43,8 @@ set mouse=n " Interface {{{1 set display+=lastline -set list +" I changed my mind... a toggle is best +set nolist "set listchars=tab:⇥\ ,trail:␣,extends:⇉,precedes:⇇,nbsp:⚭ if &termencoding ==# 'utf-8' || &encoding ==# 'utf-8' let &listchars = "tab:\u21e5 ,extends:\u21c9,precedes:\u21c7,nbsp:\u26ad" -- cgit v1.2.3-70-g09d2 td>
Category-0 solutions to The C Programming Language, 2nd Editionzlg
aboutsummaryrefslogtreecommitdiff
path: root/astylerc (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2015-12-19Change license to GPLv3, add contributing guidezlg1-0/+17
* Improve README tone * Add `astylerc` for use with the astyle package * Add AUTHORS file to acknowledge contributors
2015-12-19Re-solve Exercise 1-16: arbitrarily long maxlineIsa Hassen1-44/+60
A completely rewritten solution which follows the spec given in the book exactly; make the program work for arbitrarily long input lines while modifying `main()` only. I've only changed the name of the macro MAXLINE to BUFFSIZE for clarity - otherwise the code is typed up exactly as found in the book. It demonstrates the use of a buffer without modifying any of the helper functions.