Furkan Karataş

Results 26 comments of Furkan Karataş

With this PR, when `company-box-right-margin` is float, company-box always start at most left of the frame. I'm working on it.

I could not have a chance to investigate it, I am planning to do emacs related stuff next two days, I will probably fix this too.

Ready to review :ok_hand: Edit: now, it moves to most left of the frame when scrolling, I did'nt notice for a week since I almost never scroll in company, I...

Ready to review, final this time :smile: It turns out modify-frame-parameters function called in one more place too, I just add round to left parameter to work well with float...

You can fix it by changing vertical-adjust of all icons one by one, or you can change it everywhere with `all-the-icons-default-adjust` variable. But changing the variable temporarily during calculation of...

If beacon color and the cursor color is the same, cursor color turns white during blinking (i don't know why). As a workaround, you can use this script to set...

I use this hack to activate hl-line only in vterm-copy-mode: ```emacs-lisp (add-hook 'vterm-mode (lambda () (setq-local global-hl-line-mode nil))) (add-hook 'vterm-copy-mode (lambda () (call-interactively 'hl-line-mode))) ``` Note: i have `(global-hl-line-mode)` in...

You can use buffer local face remapping: ```emacs-lisp (add-hook 'vterm-mode-hook (lambda () (face-remap-add-relative 'default :background "#000000"))) ```

@KessoumML here is what I use, it is pretty hacky but it's work: ```python # Models class Student: name = models.CharField() class Course: students = models.ManyToManyField(Student, related_name='courses') class Book: course...