Skip to content

Commit

Permalink
cleanup logging
Browse files Browse the repository at this point in the history
  • Loading branch information
xt0fer committed Nov 26, 2018
1 parent 0dbc10f commit cd26dbe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kg Emacs

The small functional Emacs in Go
A small functional Emacs in Go

kg Emacs is inspired by Atto Emacs (by Hugh Barney), MicroEmacs, Nano, Pico and his earlier project known as Perfect Emacs [1].

Expand Down Expand Up @@ -134,12 +134,16 @@ Generally, the procedure for copying or moving text is:
ESC will escape from the search prompt and return to the point of the match
C-G abort the search and return to point before the search started

## Building on Linux
## Building on Linux/MacOS

When building on Ubuntu you will need to install Go v1.11 or greater.
You will also need the `guthub.com/nsf/termbox-go`
You will also need the `github.com/nsf/termbox-go`

$ go get github.com/kristofer/kg
$ go get github.com/nsf/termbox-go

cd to the kg source directory...

$ go get `this repo`
$

## Future Enhancements
Expand Down
Binary file removed cmd/cmd
Binary file not shown.
2 changes: 1 addition & 1 deletion replace.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ outer:
break inner

//case 0x1B: /* esc */
//flushinp() /* discard any escape sequence without writing in buffer */
//flushinp() /* discard any escape sequence without writing in buffer */
case 'q': /* controlled exit */
break outer

Expand Down
1 change: 0 additions & 1 deletion window.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package kg

import (
"fmt"
"log"

termbox "github.com/nsf/termbox-go"
//termbox "github.com/gdamore/tcell/termbox"
Expand Down

0 comments on commit cd26dbe

Please sign in to comment.