The Wayback Machine - https://web.archive.org/web/20200316110904/https://github.com/topics/annotation
Skip to content
#

annotation

Here are 575 public repositories matching this topic...

ShishKabab
ShishKabab commented Sep 23, 2019

When I click 'open sidebar' in the mini-bar and the sidebar opens, I expect the tooltip of that button now to be 'close sidebar', but it stays as 'open sidebar' even though the button now closes it. It's the same in the opposite direction, if I annotate something causing the sidebar to open, the tooltip always stays 'close sidebar', even if it's closed.

socalledsound
socalledsound commented Jun 5, 2018

When I run the swift example code from the documentation I get an error on line 7

let b = new_aubio_source(path, 0, hop_size) Cannot convert value of type 'URL?' to expected argument type 'UnsafeMutablePointer<char_t>!' (aka 'ImplicitlyUnwrappedOptional<UnsafeMutablePointer>')

I've been trying to figure out how to get the right data type in there but haven't had success yet.

alexander-schranz
alexander-schranz commented Oct 16, 2019

If you open a symfony project there is mostly a var folder in the project directory. Which includes cache and other variable files which changes frequently and making the ide slower. Would be awesome if the plugin by default would set the var directory as excluded.

robertknight
robertknight commented Feb 10, 2020

Steps to reproduce

  1. On iOS, activate VoiceOver. (nb. Before activating VO, I recommend changing the "Typing" mode in VO settings to "Direct touch typing", as using the on-screen keyboard to enter a URL in Safari is painfully slow otherwise)
  2. Open Safari and navigate to https://hypothes.is/docs/help
  3. Select and activate the sidebar toggle button to close it
  4. Select and try to activate
solarmosaic-kflorence
solarmosaic-kflorence commented Nov 14, 2019

Just wanted to note that adding this flag to scalacOptions caused an error when trying to generate docs (sbt doc). To fix, I have removed this flag from Compile / doc scope in build.sbt like so:

scalacOptions in(Compile, doc) := scalacOptions.value.filterNot(Seq("-P:silencer:checkUnused").contains)

Although perhaps the flag could also only be applied to the `Compile /

hason
hason commented Nov 25, 2019

For Doctrine annotations I prefer use ::class constants over strings:

namespace App\Entity;

use App\Entity\User;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity()
 */
class Post
{
    /**
     * @ORM\ManyToOne(targetEntity=User::class, inversedBy="posts")
     */
    private $author;
}

Unfortunately, the autocompletion for properties (posts) doesn't work

Improve this page

Add a description, image, and links to the annotation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the annotation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.