mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-12-05 23:18:28 +02:00
The main change here is https://github.com/jesseduffield/gocui/pull/85, which avoids breaking lines after footnote symbols in commit messages (e.g. [1]). [1]: https://www.example.com/this-is-a-really-long-url-that-lazy-git-automatically-wraps-and-is-an-issue
20 lines
355 B
Go
20 lines
355 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package plan9
|
|
|
|
import "syscall"
|
|
|
|
func fixwd() {
|
|
syscall.Fixwd()
|
|
}
|
|
|
|
func Getwd() (wd string, err error) {
|
|
return syscall.Getwd()
|
|
}
|
|
|
|
func Chdir(path string) error {
|
|
return syscall.Chdir(path)
|
|
}
|