Skip to content

Commit 92acce9

Browse files
committed
Remove not working links and references
1 parent ba17fb3 commit 92acce9

File tree

8 files changed

+5
-41
lines changed

8 files changed

+5
-41
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: 💬 General Questions and Answers about IntelliJ V
4-
url: https://github.com/i582/vlang-idea/discussions/categories/questions-and-answers
4+
url: https://github.com/vlang/intellij-v/discussions/categories/questions-and-answers
55
about: You can ask and answer questions about plugin in the discussions forum.
66

77
- name: 💬 V Discord Server

CHANGELOG.md

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
## [0.0.1-beta.4] - 17.04.2023
1313

14-
Learn more in blog post: https://blog.vosca.dev/intellij-v-beta.4/
15-
1614
### Added
1715

1816
- Added initial debugger expression evaluation

src/main/kotlin/io/vlang/ide/VlangPostStartupActivity.kt

-25
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ class VlangPostStartupActivity : ProjectActivity {
4848
// ignore
4949
}
5050

51-
showVoscaNotification()
5251
checkUpdates(project)
5352

5453
invokeLater {
@@ -71,30 +70,6 @@ class VlangPostStartupActivity : ProjectActivity {
7170
return toolchainCandidates
7271
}
7372

74-
private fun showVoscaNotification() {
75-
val key = "vosca.notification.shown"
76-
val isShown = PropertiesComponent.getInstance().getBoolean(key)
77-
if (isShown) {
78-
return
79-
}
80-
81-
VlangNotification("IntelliJ V is now a VOSCA project!")
82-
.withActions(
83-
VlangNotification.Action("Learn more about VOSCA...") { _, notification ->
84-
BrowserUtil.browse("https://blog.vosca.dev/introducing-association/")
85-
PropertiesComponent.getInstance().setValue(key, true)
86-
notification.expire()
87-
}
88-
)
89-
.withActions(
90-
VlangNotification.Action("Don't show again") { _, notification ->
91-
PropertiesComponent.getInstance().setValue(key, true)
92-
notification.expire()
93-
}
94-
)
95-
.show(null)
96-
}
97-
9873
private fun checkUpdates(project: Project) {
9974
val hasNewerVersion = InstalledPluginsState.getInstance().hasNewerVersion(PLUGIN_ID)
10075
if (!hasNewerVersion) {

src/main/resources/stubs/compile_time.v

-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,6 @@ pub fn $embed_file(path string, compression_type CompressionType) EmbedFileData
8484
// code into the current function. That means that the template automatically has
8585
// access to that function's entire environment (like variables).
8686
//
87-
// See [Template documentation](https://docs.vosca.dev/concepts/templates/overview.html) for more details.
88-
//
8987
// Example:
9088
// ```
9189
// fn build() string {

src/main/resources/stubs/errors.v

-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,4 @@ module stubs
3030
// // ^^^ err is set with error("not implemented")
3131
// }
3232
// ```
33-
//
34-
// See [Documentation](https://docs.vosca.dev/concepts/error-handling/overview.html)
35-
// for more details.
3633
pub const err = IError{}

src/main/resources/stubs/primitives.v

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ pub type byte = u8
6666
pub type rune = int
6767

6868
// char is an alias for u8 and is equivalent to u8 in all ways.
69-
// Mostly used for [C interoperability](https://docs.vosca.dev/advanced-concepts/v-and-c.html).
69+
// Mostly used for C interoperability.
7070
pub type char = u8
7171

7272
// voidptr is an untyped pointer.
73-
// Mostly used for [C interoperability](https://docs.vosca.dev/advanced-concepts/v-and-c.html).
73+
// Mostly used for C interoperability.
7474
pub type voidptr = voidptr
7575

7676
// byteptr is a byte pointer.
77-
// Mostly used for [C interoperability](https://docs.vosca.dev/advanced-concepts/v-and-c.html).
77+
// Mostly used for C interoperability.
7878
pub type byteptr = byteptr
7979

8080
// charptr is a char pointer.
81-
// Mostly used for [C interoperability](https://docs.vosca.dev/advanced-concepts/v-and-c.html).
81+
// Mostly used for C interoperability.
8282
pub type charptr = charptr

src/main/resources/stubs/threads.v

-2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,4 @@ struct ThreadPool[T] {}
7575
// // All jobs finished: [1, 4, 9, 16, 25, 36, 49, 64, 81]
7676
// }
7777
// ```
78-
//
79-
// See [Documentation](https://docs.vosca.dev/concepts/concurrency.html) for more details.
8078
pub fn (t ThreadPool[T]) wait() []T

src/main/resources/stubs/vweb.v

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ pub fn (v VWebTemplate) html() vweb.Result
2323
// That means that the template automatically has access to that
2424
// function's entire environment (like variables).
2525
//
26-
// See [vweb documentation](https://modules.vosca.dev/standard_library/vweb.html) for more information.
27-
//
2826
// Example:
2927
// ```
3028
// @['/']

0 commit comments

Comments
 (0)