This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "ctrl+alt+left", | |
"command": "subwordNavigation.cursorSubwordLeft", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+right", | |
"command": "subwordNavigation.cursorSubwordRight", | |
"when": "editorTextFocus" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# C:\Users\[username]\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 | |
Push-Location (Split-Path -Path $MyInvocation.MyCommand.Definition -Parent) | |
# Load posh-git module from current directory | |
Import-Module -Name posh-git | |
# If module is installed in a default location ($env:PSModulePath), | |
# use this instead (see about_Modules for more information): | |
# Import-Module posh-git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable progress bars created by Invoke-RestMethod which internally uses Write-Progress) | |
$progressPreference = 'silentlyContinue' | |
$url = 'http://bamboohost:8085/' | |
$apiUrl = $url + "rest/api/latest/" | |
$project = 'ZZ-ZZZ' | |
$queueUrl = ("{0}queue/{1}" -f $apiUrl, $project) | |
$username='username' | |
$password='password' |