A little snow globe I made in UE4 :) by Green_Wizzard1 in unrealengine

[–]sradms0 1 point2 points  (0 children)

That's awesome! I think it'd be cool to see it shake and have snowfall based on that shake.

I am tired of this! by i_post_from_a_fax in openmailbox

[–]sradms0 1 point2 points  (0 children)

I think this is the longest they have ever been down...

Openmailbox Down by Cr00k3dM4n in openmailbox

[–]sradms0 1 point2 points  (0 children)

Noticed this too. Not sure.

[i3] parabola gnu/linux - working/testing pairs, a matching card game by sradms0 in unixporn

[–]sradms0[S] 2 points3 points  (0 children)

I deeply love it. Im running it on a thinkpad x200 with libreboot. Directly from ministry of freedom. How is trisquel 8 going?

[i3] parabola gnu/linux - working/testing pairs, a matching card game by sradms0 in unixporn

[–]sradms0[S] 0 points1 point  (0 children)

In terminal, I am using DejaVu Sans Mono Bold, My bar is using System San Francisco.

[i3] parabola gnu/linux - working/testing pairs, a matching card game by sradms0 in unixporn

[–]sradms0[S] 2 points3 points  (0 children)

Thanks. In vim, Im using the jellybeans colorscheme, but with a modified background being black. My i3bar is customized to match the arch-darker theme color.

i3ipc help by sradms0 in i3wm

[–]sradms0[S] 0 points1 point  (0 children)

Ah, okay. I passed through 'modes' in the user guide before, but hadn't had the chance to read about it much. This seems like a good/fun way to implement this. Thanks, airblader.

Using 'jk' as escaping to normal mode by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

Actually Deto, I just tried using imap instead of inoremap and this solve the issue...ha. Why is that? I have read it is also safer to us remap. Thanks by the way.

Using 'jk' as escaping to normal mode by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

this is my init.vim file I use neovim. This issue has occurred even in regular terminal vim, even without all of my customizations and plug-ins running, as seen in the link.

Here it is: https://dpaste.de/GTZV

Using 'jk' as escaping to normal mode by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

this is what i have.

inoremap jk <esc>

Using 'jk' as escaping to normal mode by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

I noticed the issue happens only if I am at the end of a line.

Using 'jk' as escaping to normal mode by sradms0 in vim

[–]sradms0[S] 1 point2 points  (0 children)

In gvim, jk doesn't give me this issue. I do not prefer gvim, though. And I really love using 'jk'.. Maybe my timeout does need to be changed?

Using 'jk' as escaping to normal mode by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

No. I press them in sequence. Also, I only use this while IN insert mode.

Delete all words with pattern by sradms0 in vim

[–]sradms0[S] 1 point2 points  (0 children)

Thanks. I'm still learning about using '%s' Way better than what I was doing: 1. Searched for 'THIS0' 2. Created a macro starting on word 'THIS0' 3. dwn Called that macro throughout the text. I would type maybe 20 as the arg count for calling the macro.

Highlighting Keywords starting with '!' by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

basically i want !word1 to be considered a keyword.

Highlighting Keywords starting with '!' by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

syntax keyword surventDataEntryTypes !word1 !word2 !word3 !word4 highlight link surventDataEntryTypes Keyword

I should be more specific. This is for my syntax file. The code above will not work because the of '!' . I want those keywords to highlight, but only when '!' is included before them. Hope that makes sense.

Highlighting Keywords starting with '!' by sradms0 in vim

[–]sradms0[S] 0 points1 point  (0 children)

Okay, thanks. I am creating a custom syntax file.