altsem

Results 100 comments of altsem

@jonathanj I think this function will help you assemble the patch. You just need to pass it a file_i, hunk_i and a range of lines: https://github.com/altsem/gitu/blame/3ccaa5178369f6c000a94182656ae55360ba92e0/src/git/diff.rs?plain=1#L50-L56 ```rust pub(crate) fn format_line_patch(...

Hey! I have had the question asked before. Currently there's no roadmap. But theres a bunch of open issues that might help. Something in the back of my head regarding...

@Qkessler I agree something like a roadmap to help paint a picture of what is being worked on would be helpful. I think a pile of issues alone is too...

@TLINDEN Gitu just runs `git commit`, so git would be responsible for opening the editor. The case is not the same when you open a file/diff with "enter". I take...

@TLINDEN I think I understand what is happening here. `push_menu.push = ["p"]` this option has been removed in favor of: ```toml push_menu.push_to_push_remote = ["p"] push_menu.push_to_upstream = ["u"] ``` As well...

In my opinion, some kind of text-wrap should be default. The current solution to truncate was merely a workaround. There's no way to scroll to the right, so it doesn't...

@jonathanj I've been thinking a lot, but haven't really concluded what is best here. But I put some thoughts and a PoC where I left off on a draft: https://github.com/altsem/gitu/pull/455

hi @tulilirockz, I suggest we just rip of how Magit works here and make this an addition into `src/ops/discard.rs`. ``` File Edit Options Buffers Tools Minibuf Help Head: feat/key-hints feat:...

Text wrapping is a great addition! About adding an exta column to the gutter, I suppose it's possible. An alternative idea I got was to replace the blue pipe on...

One example is when navigating below the visible view, the view should scroll along with the cursor. But if enough lines are wrapped, then it would be delayed. There is...