Spacemacs how to navigate help (paging)? - spacemacs

I am trying to view the list of keybindings. I do this:
SPC h k
I see this: C-h paging/help
How do I navigate to see the next page?
Thanks!
(I'm using spacemacs develop branch with Colemak keybindings if this messes anything up...)

That message is telling you that to get to the paging commands or to get to help you need to press C-h. After you press C-h, the paging commands will be active, and you can press n to get to the next page. I don't think Colemak should interfere, but I don't know for certain.

Related

short cut for going back to previous implementations in Intellij

I am using the Intellij to view the codes.
I usually use ctrl + B to go to declaration and find the detailed implementations of the codes. However, I have no idea about going back to previous position where I started. So, I clicked the tab whenever I want to go back to the previous screen and this behavior is very annoyed and time consuming tasks. Do you know the short-cut of how to go back previous screen to debug the codes more quickly?
Go to next/previous editor tab
Alt + Right/Left
Navigate back/forward codes
Ctrl + Alt + Right/Left
Also Navigating Through the Source Code will help you.

Sikuli click is not effect

I'm using SikulixIDE 1.1.0 to write a script playing Yugioh game (run on Windows 10 x64).
See the main screen:
I start the game manually and then run the script as below:
switchApp("Yu-Gi-Oh! PC")
click("1477213591920.png")
My expectation is that the link named "DUEL MODE" is clicked to go to the next screen. The cursor always moves to that link, but sometimes it works, sometimes does not.
I check the log and see that Sikuli has sent click command but for some reason, the game not accept it. This is the log:
[log] App.focus: [8020:Yu-Gi-Oh!]
[log] CLICK on L(687,488)#S(0)[0,0 1366x768]
I've already tried:
doubleClick instead of click
sleep a few seconds
hover and click
But all do not work, neither.
I would expect that some of the things you have tried will help but if that's not the case you will need to identify whether the button was actually triggered or not. To do that you have to capture the next screen or any part of it that uniquely identifies it. Then you will use it a loop with a predefined number of attempts and some wait time between them and click more than once if the click didn't work. So generally something like that (pseudo code):
attempts = 3
for attempt in attempts:
click(button)
if (nextScreen is available):
break
sleep(time)
I know it's been a while but I ran into a similar problem recently.
The image was found but the click didn't work.
I'm also working on Windows 10 x86_64.
The solution was simply to execute the program as administrator.
Don't know why but now it's working..
I also had to use the double click instead of simple click for some patterns.
In adition to Eugene S Answers, if you are using SikuliX, you can try to Run in Slow Motion. Also, if the image have some effects (like brightness), you can try to use Pattern inside of exists():
if exists(Pattern("DualMode.png").similar(0.6), time_in_seconds):
click(Pattern("DualMode.png").similar(0.6))
By default, the similar() value is 0.8, so if the image have some effect and for example, the color change every second, you can set a lower value between 0 and 1.
PS: Don't forget to put the pattern inside if exists and click, because if you don't put inside of click(), could throw an Image not found error message.

What the heck is this icon in the Atom Editor and how do I get rid of it?

It might have popped up when I was trying shortcuts out but even after trying a variety of the atom shortcuts I can't seem to get rid of it.
Have you tried Window: Reload command (shortcut: pressing ctrl-alt-cmd-l), it will try to reload the entire window and refresh everything.
Can you provide more details on what shortcut have you tried?
Asked on the atom.io discussion board, turns out I just have to wait for atom to update it's electron to a version where this bug doesn't happen.

Dreamweaver how to get properties bar back

Oh my word. I struggle with the actual codeing of my website, and now something sooooo stupid has to happen....
In dreamweaver.. i think i pressed the wrong button or something, and now i cant fix it..
You know on the right hand side (usually) there is a window where you can set the properties of lets say a textbox. Like its name, its contents, its id etc.
That box has dissapeared... Now theres only some random boxes of properties i have NOOOO idea what for...
Can any one tell me how i can get that back please? The default ones back? (like a reset settings button somewhere?
Thank you!
Ruan.
Go to the Window menu and select Properties to get it back. Alternately, Control-F3.

intellij how to change run window width

Something so easy..
I just want the 'run' window of intellij, that prints output, to wrap instead of just running off the side of the screen. I've spent 15 minutes trying to figure it out. Please someone tell me!
Thanks!
Idea X will have this very feature. You can give the preview a try: http://www.jetbrains.com/idea/nextversion/index.html. You'll notice a button in the run window tool bar that says 'Use Soft Wraps'. That's what you're looking for