git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git gui: visually wrap lines of commit message
@ 2008-08-09 16:05 Clemens Buchacher
  2008-08-09 21:44 ` Johannes Sixt
  0 siblings, 1 reply; 9+ messages in thread
From: Clemens Buchacher @ 2008-08-09 16:05 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: git

Visually wrap lines in the commit message text box. That way we can avoid
a horizontal scroll bar (which was not available anyways).

Note: This does _not_ break lines in the actual commit message.

Signed-off-by: Clemens Buchacher <drizzd@aon.at>
---

I also tried to get automatic line breaks but was unable to do so. I managed
to implement a callback function triggered by the <<Modified>> event, and I
also managed to query the end position of the insertion using the 'insert'
index. So with this information it would be possible to implement automatic
line breaks. Unfortunately, this is not enough for pasting. If there is more
than one new character, the start position of the insertion is unknown.

I then tried to track cursor movement, but no luck there either. Any ideas
are welcome. For now I'll simply have to "git commit --amend<CR>gqG:x<CR>"
each time I use git gui.

Clemens

 git-gui/git-gui.sh |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/git-gui/git-gui.sh b/git-gui/git-gui.sh
index 14b2d9a..3949f7d 100755
--- a/git-gui/git-gui.sh
+++ b/git-gui/git-gui.sh
@@ -2528,6 +2528,7 @@ text $ui_comm -background white -foreground black \
 	-autoseparators true \
 	-relief sunken \
 	-width $repo_config(gui.commitmsgwidth) -height 9 -wrap none \
+	-wrap char \
 	-font font_diff \
 	-yscrollcommand {.vpane.lower.commarea.buffer.sby set}
 scrollbar .vpane.lower.commarea.buffer.sby \
-- 
1.5.6.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2008-08-10  9:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-09 16:05 [PATCH] git gui: visually wrap lines of commit message Clemens Buchacher
2008-08-09 21:44 ` Johannes Sixt
2008-08-09 22:06   ` Clemens Buchacher
2008-08-09 22:14     ` Johannes Sixt
2008-08-09 22:41       ` Clemens Buchacher
2008-08-10  2:25         ` Shawn O. Pearce
2008-08-10  7:56           ` Lars Noschinski
2008-08-10  7:59             ` Shawn O. Pearce
2008-08-10  9:25               ` Clemens Buchacher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).